blob: 3800f297a8cce2ca860e5d182dfd29f5a5ff9941 [file] [log] [blame]
Chris Wren77781d32016-01-11 14:49:26 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto2";
16
17option java_package = "com.android.internal.logging";
18option java_outer_classname = "MetricsProto";
19
20package com_android_internal_logging;
21
22// Wrapper for System UI log events
23message MetricsEvent {
24
Chris Wren5e334f62016-11-14 10:16:21 -050025 // Types of events
26 enum Type {
27 // Unknown
28 TYPE_UNKNOWN = 0;
29
30 // The view became visible to the user.
31 TYPE_OPEN = 1;
32
33 // The view became hidden.
34 TYPE_CLOSE = 2;
35
36 // The view switched to detail mode (most relevant for quick settings tiles)
37 TYPE_DETAIL = 3;
38
39 // The view or control was activated.
40 TYPE_ACTION = 4;
41
42 // The view or control was dismissed.
43 TYPE_DISMISS = 5;
Julia Reynolds520df6e2017-02-13 09:05:10 -050044
45 // The view or control was updated.
46 TYPE_UPDATE = 6;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080047
48 // Type for APP_TRANSITION event: The transition started a new activity for which it's process
49 // wasn't running.
50 TYPE_TRANSITION_COLD_LAUNCH = 7;
51
52 // Type for APP_TRANSITION event: The transition started a new activity for which it's process
53 // was already running.
54 TYPE_TRANSITION_WARM_LAUNCH = 8;
55
56 // Type for APP_TRANSITION event: The transition brought an already existing activity to the
57 // front.
58 TYPE_TRANSITION_HOT_LAUNCH = 9;
Chris Wren5e334f62016-11-14 10:16:21 -050059 }
60
Chris Wren77781d32016-01-11 14:49:26 -050061 // Known visual elements: views or controls.
62 enum View {
Chris Wren7c516842016-03-01 16:44:32 -050063 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -050064 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -050065
66 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -050067 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -050068
69 // OPEN: Settings > Accessibility
70 // CATEGORY: SETTINGS
71 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050072 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -050073
74 // OPEN: Settings > Accessibility > Captions
75 // CATEGORY: SETTINGS
76 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050077 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -050078
79 // OPEN: Settings > Accessibility > [Service]
80 // CATEGORY: SETTINGS
81 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050082 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -050083
84 // OPEN: Settings > Accessibility > Color correction
85 // CATEGORY: SETTINGS
86 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050087 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -050088
89 // OPEN: Settings > Accessibility > Accessibility shortcut
90 // CATEGORY: SETTINGS
91 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050092 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -050093
94 // OPEN: Settings > Accessibility > Magnification gestures
95 // CATEGORY: SETTINGS
96 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050097 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -050098
99 // OPEN: Settings > Accounts
100 // CATEGORY: SETTINGS
101 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500102 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500103
104 // OPEN: Settings > Accounts > [Single Account Sync Settings]
105 // CATEGORY: SETTINGS
106 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500107 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500108
109 // OPEN: Settings > Accounts > Add an account
110 // CATEGORY: SETTINGS
111 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500112 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500113
114 // OPEN: Settings > Accounts > [List of accounts when more than one]
115 // CATEGORY: SETTINGS
116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500117 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500118
119 // OPEN: Settings > Cellular network settings > APNs
120 // CATEGORY: SETTINGS
121 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500122 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500123
124 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
125 // CATEGORY: SETTINGS
126 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500127 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500128
129 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500130 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500131
132 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500133 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500134
135 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500136 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500137
138 // OPEN: Settings > Apps > Configure apps > App links > [App]
139 // CATEGORY: SETTINGS
140 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500141 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500142
143 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500144 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500145
146 // OPEN: Settings > Internal storage > Apps storage > [App]
147 // CATEGORY: SETTINGS
148 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500149 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500150
151 // OPEN: Settings > Apps > [App info]
152 // CATEGORY: SETTINGS
153 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500154 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500155
156 // OPEN: Settings > Memory > App usage > [App Memory usage]
157 // CATEGORY: SETTINGS
158 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500159 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500160
161 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500162 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500163
164 // OPEN: Settings > Memory > App usage
165 // CATEGORY: SETTINGS
166 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500167 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500168
169 // OPEN: Settings > Bluetooth
170 // CATEGORY: SETTINGS
171 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500172 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500173
174 // OPEN: Choose Bluetooth device (ex: when sharing)
175 // CATEGORY: SETTINGS
176 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500177 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500178
179 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500180 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500181
182 // OPEN: Settings > Security > Choose screen lock
183 // CATEGORY: SETTINGS
184 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500185 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500186
187 // OPEN: Settings > Security > Choose screen lock > Choose your password
188 // CATEGORY: SETTINGS
189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500190 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500191
192 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
193 // CATEGORY: SETTINGS
194 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500195 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500196
197 // OPEN: Settings > Security > Choose screen lock > Confirm your password
198 // CATEGORY: SETTINGS
199 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500200 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500201
202 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
203 // CATEGORY: SETTINGS
204 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500205 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500206
207 // OPEN: Settings > Security > Encrypt phone
208 // CATEGORY: SETTINGS
209 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500210 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500211
212 // OPEN: Settings > Security > Encrypt phone > Confirm
213 // CATEGORY: SETTINGS
214 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500215 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500216
217 // OPEN: Settings > Search results
218 // CATEGORY: SETTINGS
219 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500220 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500221
222 // OPEN: Settings (Root page)
223 // CATEGORY: SETTINGS
224 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500225 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500226
227 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500228 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500229
230 // OPEN: Settings > Data usage
231 // CATEGORY: SETTINGS
232 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500233 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500234
235 // OPEN: Settings > Date & time
236 // CATEGORY: SETTINGS
237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500238 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500239
240 // OPEN: Settings > Developer options
241 // CATEGORY: SETTINGS
242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500243 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500244
245 // OPEN: Settings > About phone
246 // CATEGORY: SETTINGS
247 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500248 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500249
250 // OPEN: Settings > About phone > Status > IMEI information
251 // CATEGORY: SETTINGS
252 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500253 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500254
255 // OPEN: Settings > Internal storage
256 // CATEGORY: SETTINGS
257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500258 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500259
260 // OPEN: Settings > About phone > Status > SIM status
261 // CATEGORY: SETTINGS
262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500263 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500264
265 // OPEN: Settings > About phone > Status
266 // CATEGORY: SETTINGS
267 // OS: 6.0
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
Chris Wren77781d32016-01-11 14:49:26 -0500276 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500277
278 // OPEN: Settings > Display > Daydream
279 // CATEGORY: SETTINGS
280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500281 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500282
283 // OPEN: Settings > Security > Screen lock > Secure start-up
284 // CATEGORY: SETTINGS
285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500286 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500287
288 // OPEN: Settings > Security > Nexus Imprint
289 // CATEGORY: SETTINGS
290 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500291 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500292
293 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500294 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500295
296 // OPEN: Settings > Battery > History details
297 // CATEGORY: SETTINGS
298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500299 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500300
301 // OPEN: Settings > Battery > Battery saver
302 // CATEGORY: SETTINGS
303 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500304 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500305
306 // OPEN: Settings > Battery > [App Use details]
307 // CATEGORY: SETTINGS
308 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500309 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500310
311 // OPEN: Settings > Battery
312 // CATEGORY: SETTINGS
313 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500314 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500315
316 // OPEN: Settings > Home
317 // CATEGORY: SETTINGS
318 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500319 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500320
321 // OPEN: Settings > Security > SIM card lock settings
322 // CATEGORY: SETTINGS
323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500324 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500325
326 // OPEN: Settings > Language & input
327 // CATEGORY: SETTINGS
328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500329 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500330
331 // OPEN: Settings > Language & input > Physical keyboard
332 // CATEGORY: SETTINGS
333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500334 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OPEN: Settings > Language & input > Spell checker
337 // CATEGORY: SETTINGS
338 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500339 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500340
341 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500342 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings > Language & input > Personal dictionary
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OPEN: Settings > Language & input > Add word
350 // CATEGORY: SETTINGS
351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500352 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500353
354 // OPEN: Settings > Location
355 // CATEGORY: SETTINGS
356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500357 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500358
359 // OPEN: Settings > Location > Location mode
360 // CATEGORY: SETTINGS
361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500362 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500363
364 // OPEN: Settings > Apps
365 // CATEGORY: SETTINGS
366 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500367 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500368
369 // OPEN: Settings > Backup & reset > Factory data reset
370 // CATEGORY: SETTINGS
371 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500372 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500373
374 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
375 // CATEGORY: SETTINGS
376 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500377 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500378
379 // OPEN: Settings > Data usage > Network restrictions
380 // CATEGORY: SETTINGS
381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500382 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500383
384 // OPEN: Settings > More > Android Beam
385 // CATEGORY: SETTINGS
386 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500387 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500388
389 // OPEN: Settings > Tap & pay
390 // CATEGORY: SETTINGS
391 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500392 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500393
394 // OPEN: Settings > Sound & notification
395 // CATEGORY: SETTINGS
396 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500397 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500398
399 // OPEN: Settings > Sound & notification > App notifications > [App]
400 // CATEGORY: SETTINGS
401 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500402 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500403
404 // OPEN: Settings > Sound & notification > Other sounds
405 // CATEGORY: SETTINGS
406 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500407 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500408
409 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500410 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500411
412 // OPEN: Settings Widget > Notification log
413 // CATEGORY: SETTINGS
414 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500415 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500416
417 // OPEN: Settings > Sound & notification > Do not disturb
418 // CATEGORY: SETTINGS
419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500420 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500421
422 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500423 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500424
425 // OPEN: Print job notification > Print job settings
426 // CATEGORY: SETTINGS
427 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500428 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500429
430 // OPEN: Settings > Printing > [Print Service]
431 // CATEGORY: SETTINGS
432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500433 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500434
435 // OPEN: Settings > Printing
436 // CATEGORY: SETTINGS
437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500438 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500439
440 // OPEN: Settings > Backup & reset
441 // CATEGORY: SETTINGS
442 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500443 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500444
445 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500446 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500447
448 // OPEN: Settings > Backup & reset > Network settings reset
449 // CATEGORY: SETTINGS
450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500451 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
454 // CATEGORY: SETTINGS
455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500456 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500457
458 // OPEN: Settings > Developer Options > Running Services
459 // CATEGORY: SETTINGS
460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500461 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500462
463 // OPEN: Settings > Security > Screen pinning
464 // CATEGORY: SETTINGS
465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500466 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500467
468 // OPEN: Settings > Security
469 // CATEGORY: SETTINGS
470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500471 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500472
473 // OPEN: Settings > SIM cards
474 // CATEGORY: SETTINGS
475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500476 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500477
478 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500479 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500480
481 // OPEN: Settings > More > Tethering & portable hotspot
482 // CATEGORY: SETTINGS
483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500484 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OPEN: Settings > Security > Trust agents
487 // CATEGORY: SETTINGS
488 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500489 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500490
491 // OPEN: Settings > Security > Trusted credentials
492 // CATEGORY: SETTINGS
493 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500494 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500495
496 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
497 // CATEGORY: SETTINGS
498 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500499 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Language & input > Text-to-speech output
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > Security > Apps with usage access
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Users
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: Settings > Users > [Restricted profile app & content access]
517 // CATEGORY: SETTINGS
518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500519 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500520
521 // OPEN: Settings > Users > [User settings]
522 // CATEGORY: SETTINGS
523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500524 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500525
526 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500527 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500528
529 // OPEN: Settings > More > VPN
530 // CATEGORY: SETTINGS
531 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500532 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500533
534 // OPEN: Settings > Display > Choose wallpaper from
535 // CATEGORY: SETTINGS
536 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500537 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500538
539 // OPEN: Settings > Display > Cast
540 // CATEGORY: SETTINGS
541 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500542 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500543
544 // OPEN: Settings > Wi-Fi
545 // CATEGORY: SETTINGS
546 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500547 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500548
549 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
550 // CATEGORY: SETTINGS
551 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500552 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500553
554 // OPEN: Settings > More > Wi-Fi Calling
555 // CATEGORY: SETTINGS
556 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500557 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500558
559 // OPEN: Settings > Wi-Fi > Saved networks
560 // CATEGORY: SETTINGS
561 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500562 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500563
564 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500565 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500566
567 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500568 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500569
570 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
571 // CATEGORY: SETTINGS
572 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500573 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OPEN: Settings > More
576 // CATEGORY: SETTINGS
577 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500578 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OPEN: Quick Settings Panel
581 // CATEGORY: QUICK_SETTINGS
582 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500583 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500584
585 // OPEN: QS Airplane mode tile shown
586 // ACTION: QS Airplane mode tile tapped
587 // SUBTYPE: 0 is off, 1 is on
588 // CATEGORY: QUICK_SETTINGS
589 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500590 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500591
592 // OPEN: QS Bluetooth tile shown
593 // ACTION: QS Bluetooth tile tapped
594 // SUBTYPE: 0 is off, 1 is on
595 // CATEGORY: QUICK_SETTINGS
596 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500597 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500598
599 // OPEN: QS Cast tile shown
600 // ACTION: QS Cast tile tapped
601 // CATEGORY: QUICK_SETTINGS
602 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500603 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500604
605 // OPEN: QS Cellular tile shown
606 // ACTION: QS Cellular tile tapped
607 // CATEGORY: QUICK_SETTINGS
608 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500609 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500610
611 // OPEN: QS Color inversion tile shown
612 // ACTION: QS Color inversion tile tapped
613 // SUBTYPE: 0 is off, 1 is on
614 // CATEGORY: QUICK_SETTINGS
615 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500616 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500617
618 // OPEN: QS Cellular tile > Cellular detail panel
619 // CATEGORY: QUICK_SETTINGS
620 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500621 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500622
623 // OPEN: QS Do not disturb tile shown
624 // ACTION: QS Do not disturb tile tapped
625 // SUBTYPE: 0 is off, 1 is on
626 // CATEGORY: QUICK_SETTINGS
627 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500628 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500629
630 // OPEN: QS Flashlight tile shown
631 // ACTION: QS Flashlight tile tapped
632 // SUBTYPE: 0 is off, 1 is on
633 // CATEGORY: QUICK_SETTINGS
634 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500635 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500636
637 // OPEN: QS Hotspot tile shown
638 // ACTION: QS Hotspot tile tapped
639 // SUBTYPE: 0 is off, 1 is on
640 // CATEGORY: QUICK_SETTINGS
641 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500642 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500643
644 // OPEN: QS 3P tile shown
645 // ACTION: QS 3P tile tapped
646 // CATEGORY: QUICK_SETTINGS
647 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500648 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500649
650 // OPEN: QS Location tile shown
651 // ACTION: QS Location tile tapped
652 // SUBTYPE: 0 is off, 1 is on
653 // CATEGORY: QUICK_SETTINGS
654 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500655 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500656
657 // OPEN: QS Rotation tile shown
658 // ACTION: QS Rotation tile tapped
659 // SUBTYPE: 0 is off, 1 is on
660 // CATEGORY: QUICK_SETTINGS
661 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500662 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500663
664 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500665 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500666
667 // OPEN: QS User list panel
668 // CATEGORY: QUICK_SETTINGS
669 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500670 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OPEN: QS WiFi tile shown
673 // ACTION: QS WiFi tile tapped
674 // SUBTYPE: 0 is off, 1 is on
675 // CATEGORY: QUICK_SETTINGS
676 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500677 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500678
679 // OPEN: Notification Panel (including lockscreen)
680 // CATEGORY: NOTIFICATION
681 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500682 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500683
684 // OPEN: Notification in panel became visible.
685 // PACKAGE: App that posted the notification.
686 // ACTION: Notification is tapped.
687 // PACKAGE: App that posted the notification
688 // DETAIL: Notification is expanded by user.
689 // PACKAGE: App that posted the notification
690 // DISMISS: Notification is dismissed.
691 // PACKAGE: App that posted the notification
692 // SUBTYPE: Dismiss reason from NotificationManagerService.java
693 // CATEGORY: NOTIFICATION
694 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500695 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500696
697 // ACTION: User tapped notification action
698 // PACKAGE: App that posted the notification
699 // SUBTYPE: Index of action on notification
700 // CATEGORY: NOTIFICATION
701 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500702 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500703
704 // OPEN: Settings > Apps > Configure apps > App permissions
705 // CATEGORY: SETTINGS
706 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500707 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500708
709 // OPEN: Settings > Location > Scanning
710 // CATEGORY: SETTINGS
711 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500712 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500713
714 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500715 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500716
717 // OPEN: Settings > Sound & notification > App notifications
718 // CATEGORY: SETTINGS
719 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500720 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500721
722 // ACTION: Settings > Wi-Fi > Overflow > Add Network
723 // CATEGORY: SETTINGS
724 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500725 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500726
727 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700728 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500729 // CATEGORY: SETTINGS
730 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500731 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500732
733 // ACTION: Settings > Wi-Fi > Overflow > Refresh
734 // CATEGORY: SETTINGS
735 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500736 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500737
738 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
739 // CATEGORY: SETTINGS
740 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500741 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500742
743 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700744 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500745 // CATEGORY: SETTINGS
746 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500747 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // ACTION: Settings > Wi-Fi > Toggle on
750 // CATEGORY: SETTINGS
751 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500752 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500753
754 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500755 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500756
757 // OPEN: Settings > Sound & notification > DND > Priority only allows
758 // CATEGORY: SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OPEN: Settings > Sound & notification > DND > Automatic rules
763 // CATEGORY: SETTINGS
764 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500765 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500766
767 // OPEN: Settings > Apps > Configure apps > App links
768 // CATEGORY: SETTINGS
769 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500770 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500771
772 // OPEN: Settings > Sound & notification > DND > [Time based rule]
773 // CATEGORY: SETTINGS
774 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500775 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500776
777 // OPEN: Settings > Sound & notification > DND > [External rule]
778 // CATEGORY: SETTINGS
779 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500780 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500781
782 // OPEN: Settings > Sound & notification > DND > [Event rule]
783 // CATEGORY: SETTINGS
784 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500785 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500786
787 // ACTION: App notification settings > Block Notifications
788 // CATEGORY: SETTINGS
789 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500790 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500791
792 // ACTION: Notification shade > Dismiss all button
793 // CATEGORY: NOTIFICATION
794 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500795 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500796
797 // OPEN: QS Do Not Disturb detail panel
798 // CATEGORY: QUICK_SETTINGS
799 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500800 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500801
802 // OPEN: QS Bluetooth detail panel
803 // CATEGORY: QUICK_SETTINGS
804 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500805 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500806
807 // OPEN: QS Cast detail panel
808 // CATEGORY: QUICK_SETTINGS
809 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500810 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500811
812 // OPEN: QS Wi-Fi detail panel
813 // CATEGORY: QUICK_SETTINGS
814 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500815 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500816
817 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
818 // SUBTYPE: 0 is off, 1 is on
819 // CATEGORY: QUICK_SETTINGS
820 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500821 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500822
823 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
824 // SUBTYPE: 0 is off, 1 is on
825 // CATEGORY: QUICK_SETTINGS
826 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500827 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // ACTION: QS Cellular detail panel > Cellular toggle
830 // SUBTYPE: 0 is off, 1 is on
831 // CATEGORY: QUICK_SETTINGS
832 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500833 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500834
835 // ACTION: QS User list panel > Select different user
836 // CATEGORY: QUICK_SETTINGS
837 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500838 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500839
840 // ACTION: QS Cast detail panel > Select cast device
841 // CATEGORY: QUICK_SETTINGS
842 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500843 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500844
845 // ACTION: QS Cast detail panel > Disconnect cast device
846 // CATEGORY: QUICK_SETTINGS
847 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500848 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500849
850 // ACTION: Settings > Bluetooth > Toggle
851 // SUBTYPE: 0 is off, 1 is on
852 // CATEGORY: SETTINGS
853 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500854 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500855
856 // ACTION: Settings > Bluetooth > Overflow > Refresh
857 // CATEGORY: SETTINGS
858 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // ACTION: Settings > Bluetooth > Overflow > Rename this device
862 // CATEGORY: SETTINGS
863 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500864 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500865
866 // ACTION: Settings > Bluetooth > Overflow > Show received files
867 // CATEGORY: SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // ACTION: QS DND details panel > Increase / Decrease exit time
872 // SUBTYPE: true is increase, false is decrease
873 // CATEGORY: QUICK_SETTINGS
874 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500875 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500876
877 // ACTION: QS DND details panel > [Exit condition]
878 // CATEGORY: QUICK_SETTINGS
879 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500880 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500881
882 // ACTION: QS DND details panel > [DND mode]
883 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
884 // CATEGORY: QUICK_SETTINGS
885 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500886 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500887
888 // ACTION: QS DND detail panel > DND toggle
889 // SUBTYPE: 0 is off, 1 is on
890 // CATEGORY: QUICK_SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // ACTION: DND Settings > Priority only allows > Reminder toggle
895 // SUBTYPE: 0 is off, 1 is on
896 // CATEGORY: SETTINGS
897 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500898 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500899
900 // ACTION: DND Settings > Priority only allows > Event toggle
901 // SUBTYPE: 0 is off, 1 is on
902 // CATEGORY: SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // ACTION: DND Settings > Priority only allows > Messages
907 // SUBTYPE: 0 is off, 1 is on
908 // CATEGORY: SETTINGS
909 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500910 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -0500911
912 // ACTION: DND Settings > Priority only allows > Calls
913 // SUBTYPE: 0 is off, 1 is on
914 // CATEGORY: SETTINGS
915 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500916 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -0500917
918 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
919 // SUBTYPE: 0 is off, 1 is on
920 // CATEGORY: SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // ACTION: DND Settings > Automatic rules > Add rule
925 // CATEGORY: SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // ACTION: DND Settings > Automatic rules > Add rule > OK
930 // CATEGORY: SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
935 // CATEGORY: SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
940 // CATEGORY: SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
945 // SUBTYPE: 0 is off, 1 is on
946 // CATEGORY: SETTINGS
947 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // ACTION: Settings > More > Airplane mode toggle
951 // SUBTYPE: 0 is off, 1 is on
952 // CATEGORY: SETTINGS
953 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500954 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -0500955
956 // ACTION: Settings > Data usage > Cellular data toggle
957 // SUBTYPE: 0 is off, 1 is on
958 // CATEGORY: SETTINGS
959 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500960 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -0500961
962 // OPEN: Settings > Sound & notification > Notification access
963 // CATEGORY: SETTINGS
964 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500965 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -0500966
967 // OPEN: Settings > Sound & notification > Do Not Disturb access
968 // CATEGORY: SETTINGS
969 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500970 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -0500971
972 // OPEN: Settings > Apps > Configure apps > Default Apps
973 // CATEGORY: SETTINGS
974 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500975 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -0500976
977 // OPEN: Settings > Internal storage > Apps storage
978 // CATEGORY: SETTINGS
979 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500980 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -0500981
982 // OPEN: Settings > Security > Usage access
983 // CATEGORY: SETTINGS
984 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500985 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -0500986
987 // OPEN: Settings > Battery > Battery optimization
988 // CATEGORY: SETTINGS
989 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500990 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -0500991
992 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500993 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -0500994
995 // ACTION: Lockscreen > Unlock gesture
996 // CATEGORY: GLOBAL_SYSTEM_UI
997 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500998 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -0500999
1000 // ACTION: Lockscreen > Pull shade open
1001 // CATEGORY: GLOBAL_SYSTEM_UI
1002 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001003 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001004
1005 // ACTION: Lockscreen > Tap on lock, shows hint
1006 // CATEGORY: GLOBAL_SYSTEM_UI
1007 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001008 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001009
1010 // ACTION: Lockscreen > Camera
1011 // CATEGORY: GLOBAL_SYSTEM_UI
1012 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001013 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001014
1015 // ACTION: Lockscreen > Dialer
1016 // CATEGORY: GLOBAL_SYSTEM_UI
1017 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001018 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001019
1020 // ACTION: Lockscreen > Tap on lock, locks phone
1021 // CATEGORY: GLOBAL_SYSTEM_UI
1022 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001023 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001024
1025 // ACTION: Lockscreen > Tap on notification, false touch rejection
1026 // CATEGORY: GLOBAL_SYSTEM_UI
1027 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001028 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001029
1030 // ACTION: Lockscreen > Swipe down to open quick settings
1031 // CATEGORY: GLOBAL_SYSTEM_UI
1032 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001033 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001034
1035 // ACTION: Swipe down to open quick settings when unlocked
1036 // CATEGORY: GLOBAL_SYSTEM_UI
1037 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001038 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001039
1040 // ACTION: Notification shade > Tap to open quick settings
1041 // CATEGORY: GLOBAL_SYSTEM_UI
1042 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001043 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001044
1045 // OPEN: Lockscreen
1046 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1047 // CATEGORY: GLOBAL_SYSTEM_UI
1048 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001049 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001050
1051 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1052 // CATEGORY: GLOBAL_SYSTEM_UI
1053 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001054 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001055
1056 // OPEN: Screen turned on
1057 // SUBTYPE: 2 is user action
1058 // CATEGORY: GLOBAL_SYSTEM_UI
1059 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001060 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001061
1062 // OPEN: Notification caused sound, vibration, and/or LED blink
1063 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1064 // CATEGORY: NOTIFICATION
1065 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001066 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001067
1068 // ACTION: Lockscreen > Emergency Call button
1069 // CATEGORY: GLOBAL_SYSTEM_UI
1070 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001071 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001072
1073 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1074 // CATEGORY: SETTINGS
1075 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001076 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001077
1078 // OPEN: Settings > Memory
1079 // CATEGORY: SETTINGS
1080 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001081 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001082
1083 // ACTION: Settings > Display > When device is rotated
1084 // CATEGORY: SETTINGS
1085 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001086 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001087
1088 // ACTION: Long press on notification to view controls
1089 // CATEGORY: NOTIFICATION
1090 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001091 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001092
1093 // ACTION: Notificatoin controls > Info button
1094 // CATEGORY: NOTIFICATION
1095 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001096 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001097
1098 // ACTION: Notification controls > Settings button
1099 // CATEGORY: NOTIFICATION
1100 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001101 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001102
1103 // OPEN: Volume Dialog (with hardware buttons)
1104 // CATEGORY: GLOBAL_SYSTEM_UI
1105 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001106 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001107
1108 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1109 // CATEGORY: GLOBAL_SYSTEM_UI
1110 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001111 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001112
1113 // ACTION: Volume dialog > Adjust volume slider
1114 // SUBTYPE: volume level (0-7)
1115 // CATEGORY: GLOBAL_SYSTEM_UI
1116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001117 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // ACTION: Volume dialog > Select non-active stream
1120 // SUBTYPE: stream (defined in AudioSystem.java)
1121 // CATEGORY: GLOBAL_SYSTEM_UI
1122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001123 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // ACTION: Adjust volume with hardware key
1126 // SUBTYPE: volume level (0-7)
1127 // CATEGORY: GLOBAL_SYSTEM_UI
1128 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001129 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001130
1131 // ACTION: Volume dialog > Mute a stream by tapping icon
1132 // SUBTYPE: mute is 1, audible is 2
1133 // CATEGORY: GLOBAL_SYSTEM_UI
1134 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001135 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001136
1137 // ACTION: Volume dialog > Change ringer mode by tapping icon
1138 // SUBTYPE: 2 is audible, 3 is vibrate
1139 // CATEGORY: GLOBAL_SYSTEM_UI
1140 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001141 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001142
1143 // ACTION: Chooser shown (share target, file open, etc.)
1144 // CATEGORY: GLOBAL_SYSTEM_UI
1145 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001146 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001147
1148 // ACTION: Chooser > User taps an app target
1149 // SUBTYPE: Index of target
1150 // CATEGORY: GLOBAL_SYSTEM_UI
1151 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001152 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001153
1154 // ACTION: Chooser > User taps a service target
1155 // SUBTYPE: Index of target
1156 // CATEGORY: GLOBAL_SYSTEM_UI
1157 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001158 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001159
1160 // ACTION: Chooser > User taps a standard target
1161 // SUBTYPE: Index of target
1162 // CATEGORY: GLOBAL_SYSTEM_UI
1163 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001164 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001165
1166 // ACTION: QS Brightness Slider (with auto brightness disabled)
1167 // SUBTYPE: slider value
1168 // CATEGORY: QUICK_SETTINGS
1169 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001170 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // ACTION: QS Brightness Slider (with auto brightness enabled)
1173 // SUBTYPE: slider value
1174 // CATEGORY: QUICK_SETTINGS
1175 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001176 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001177
1178 // OPEN: Settings > Display > Brightness Slider
1179 // CATEGORY: SETTINGS
1180 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001181 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001182
1183 // OPEN: Settings > Apps > Configure Apps > Draw over other apps
1184 // CATEGORY: SETTINGS
1185 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001186 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001187
1188 // OPEN: Display has entered dream mode
1189 // CATEGORY: GLOBAL_SYSTEM_UI
1190 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001191 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001192
1193 // OPEN: Display has entered ambient notification mode
1194 // CATEGORY: GLOBAL_SYSTEM_UI
1195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001196 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001197
1198 // OPEN: Overview
1199 // CATEGORY: GLOBAL_SYSTEM_UI
1200 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001201 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001202
1203 // OPEN: Settings > About phone > Legal information
1204 // CATEGORY: SETTINGS
1205 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001206 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001207
1208 // OPEN: Settings > Search > Perform search
1209 // CATEGORY: SETTINGS
1210 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001211 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // OPEN: Settings > System UI Tuner
1214 // CATEGORY: SETTINGS
1215 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001216 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001217
1218 // OPEN: Settings > System UI Tuner > Quick Settings
1219 // CATEGORY: SETTINGS
1220 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001221 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001222
1223 // OPEN: Settings > System UI Tuner > Demo mode
1224 // CATEGORY: SETTINGS
1225 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001226 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001227
1228 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1229 // PACKAGE: Tile
1230 // CATEGORY: SETTINGS
1231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001232 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001233
1234 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1235 // PACKAGE: Tile
1236 // CATEGORY: SETTINGS
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1241 // PACKAGE: Tile
1242 // CATEGORY: SETTINGS
1243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001244 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001245
1246 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1247 // PACKAGE: Icon
1248 // CATEGORY: SETTINGS
1249 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001250 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001251
1252 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1253 // PACKAGE: Icon
1254 // CATEGORY: SETTINGS
1255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001256 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001257
1258 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1259 // SUBTYPE: false is disabled, true is enabled
1260 // CATEGORY: SETTINGS
1261 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001262 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001263
1264 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1265 // SUBTYPE: false is disabled, true is enabled
1266 // CATEGORY: SETTINGS
1267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001268 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1271 // SUBTYPE: 0 is disabled, 1 is enabled
1272 // CATEGORY: SETTINGS
1273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001274 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001275
1276 // OPEN: Settings > Developer options > Inactive apps
1277 // CATEGORY: SETTINGS
1278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001279 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001280
1281 // ACTION: Long press home to bring up assistant
1282 // CATEGORY: GLOBAL_SYSTEM_UI
1283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001284 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001285
1286 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1287 // CATEGORY: SETTINGS
1288 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001289 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001290
1291 // OPEN: Fingerprint Enroll > Find Sensor
1292 // CATEGORY: SETTINGS
1293 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001294 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001295
1296 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1297 // CATEGORY: SETTINGS
1298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001299 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001300
1301 // OPEN: Fingerprint Enroll introduction
1302 // CATEGORY: SETTINGS
1303 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001304 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001305
1306 // OPEN: Fingerprint Enroll onboarding
1307 // CATEGORY: SETTINGS
1308 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001309 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001310
1311 // OPEN: Fingerprint Enroll > Let's Start!
1312 // CATEGORY: SETTINGS
1313 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001314 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001315
1316 // OPEN: Fingerprint Enroll SUW > Let's Start!
1317 // CATEGORY: SETTINGS
1318 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001319 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001320
1321 // OPEN: Fingerprint Enroll SUW > Find Sensor
1322 // CATEGORY: SETTINGS
1323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001324 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001325
1326 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1327 // CATEGORY: SETTINGS
1328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001329 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001330
1331 // OPEN: Fingerprint Enroll SUW introduction
1332 // CATEGORY: SETTINGS
1333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001334 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001335
1336 // OPEN: Fingerprint Enroll SUW onboarding
1337 // CATEGORY: SETTINGS
1338 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001339 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001340
1341 // ACTION: Add fingerprint > Enroll fingerprint
1342 // CATEGORY: SETTINGS
1343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001344 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001345
1346 // ACTION: Authenticate using fingerprint
1347 // CATEGORY: SETTINGS
1348 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001349 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001350
1351 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1352 // CATEGORY: SETTINGS
1353 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001354 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001355
1356 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1357 // CATEGORY: SETTINGS
1358 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001359 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001360
1361 // ACTION: Double tap camera shortcut
1362 // CATEGORY: GLOBAL_SYSTEM_UI
1363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001364 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // ACTION: Double twist camera shortcut
1367 // CATEGORY: GLOBAL_SYSTEM_UI
1368 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001369 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001370
1371 // OPEN: QS Work Mode tile shown
1372 // ACTION: QS Work Mode tile tapped
1373 // SUBTYPE: 0 is off, 1 is on
1374 // CATEGORY: QUICK_SETTINGS
1375 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001376 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001377
1378 // OPEN: Settings > Developer Options > Background Check
1379 // CATEGORY: SETTINGS
1380 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001381 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001382
1383 // OPEN: QS Lock tile shown
1384 // ACTION: QS Lock tile tapped
1385 // SUBTYPE: 0 is off, 1 is on
1386 // CATEGORY: QUICK_SETTINGS
1387 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001388 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001389
1390 // OPEN: QS User Tile shown
1391 // CATEGORY: QUICK_SETTINGS
1392 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001393 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001394
1395 // OPEN: QS Battery tile shown
1396 // CATEGORY: QUICK_SETTINGS
1397 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001398 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001399
1400 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1401 // CATEGORY: SETTINGS
1402 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001403 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001404
1405 // ACTION: Visual interruptions > No screen interuptions 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_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001410
1411 // ACTION: Visual interruptions > No notification light toggle
1412 // SUBTYPE: 0 is off, 1 is on
1413 // CATEGORY: SETTINGS
1414 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001415 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001416
1417 // OPEN: Settings > Notifications > [App] > Topic Notifications
1418 // CATEGORY: SETTINGS
1419 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001420 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001421
1422 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1423 // PACKAGE: Selected SMS app
1424 // CATEGORY: SETTINGS
1425 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001426 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // OPEN: QS Color modification tile shown
1429 // ACTION: QS Color modification tile tapped
1430 // SUBTYPE: 0 is off, 1 is on
1431 // CATEGORY: QUICK_SETTINGS
1432 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001433 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001434
1435 // OPEN: QS Custom tile shown
1436 // ACTION: QS Work Mode tile tapped
1437 // CATEGORY: QUICK_SETTINGS
1438 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001439 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001440
1441 // ACTION: Visual interruptions > Never turn off the screen toggle
1442 // SUBTYPE: 0 is off, 1 is on
1443 // CATEGORY: SETTINGS
1444 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001445 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001446
Chris Wren7c516842016-03-01 16:44:32 -05001447 // ACTION: Overview > Long-press task, drag to enter split-screen
1448 // CATEGORY: GLOBAL_SYSTEM_UI
1449 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001450 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1451
Chris Wren7c516842016-03-01 16:44:32 -05001452 // ACTION: In App > Long-press Overview button to enter split-screen
1453 // CATEGORY: GLOBAL_SYSTEM_UI
1454 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001455 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1456
Chris Wren7c516842016-03-01 16:44:32 -05001457 // ACTION: In App > Swipe Overview button to enter split-screen
1458 // CATEGORY: GLOBAL_SYSTEM_UI
1459 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001460 ACTION_WINDOW_DOCK_SWIPE = 272;
1461
Chris Wren7c516842016-03-01 16:44:32 -05001462 // ACTION: Launch profile-specific app > Confirm credentials
1463 // CATEGORY: GLOBAL_SYSTEM_UI
1464 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001465 PROFILE_CHALLENGE = 273;
1466
Chris Wren7c516842016-03-01 16:44:32 -05001467 // OPEN: QS Battery detail panel
1468 // CATEGORY: GLOBAL_SYSTEM_UI
1469 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001470 QS_BATTERY_DETAIL = 274;
1471
Chris Wren7c516842016-03-01 16:44:32 -05001472 // OPEN: Overview > History
1473 // CATEGORY: GLOBAL_SYSTEM_UI
1474 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001475 OVERVIEW_HISTORY = 275;
1476
Chris Wren7c516842016-03-01 16:44:32 -05001477 // ACTION: Overview > Page by tapping Overview button
1478 // CATEGORY: GLOBAL_SYSTEM_UI
1479 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001480 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001481
Chris Wren7c516842016-03-01 16:44:32 -05001482 // ACTION: Overview > Select app
1483 // CATEGORY: GLOBAL_SYSTEM_UI
1484 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001485 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001486
Chris Wren7c516842016-03-01 16:44:32 -05001487 // ACTION: View emergency info
1488 // CATEGORY: GLOBAL_SYSTEM_UI
1489 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001490 ACTION_VIEW_EMERGENCY_INFO = 278;
1491
Chris Wren7c516842016-03-01 16:44:32 -05001492 // ACTION: Edit emergency info activity
1493 // CATEGORY: SETTINGS
1494 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001495 ACTION_EDIT_EMERGENCY_INFO = 279;
1496
Chris Wren7c516842016-03-01 16:44:32 -05001497 // ACTION: Edit emergency info field
1498 // CATEGORY: SETTINGS
1499 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001500 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1501
Chris Wren7c516842016-03-01 16:44:32 -05001502 // ACTION: Add emergency contact
1503 // CATEGORY: SETTINGS
1504 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001505 ACTION_ADD_EMERGENCY_CONTACT = 281;
1506
Chris Wren7c516842016-03-01 16:44:32 -05001507 // ACTION: Delete emergency contact
1508 // CATEGORY: SETTINGS
1509 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001510 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1511
Chris Wren7c516842016-03-01 16:44:32 -05001512 // ACTION: Call emergency contact
1513 // CATEGORY: SETTINGS
1514 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001515 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001516
Chris Wren7c516842016-03-01 16:44:32 -05001517 // OPEN: QS Data Saver tile shown
1518 // ACTION: QS Data Saver tile tapped
1519 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001520 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001521
Robin Lee8c1306e2016-02-01 11:37:02 +00001522 // OPEN: Settings > Security > User credentials
1523 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001524 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001525 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001526
Chris Wren7c516842016-03-01 16:44:32 -05001527 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1528 // CATEGORY: GLOBAL_SYSTEM_UI
1529 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001530 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001531
1532 // Logged when the user scrolls through overview manually
1533 OVERVIEW_SCROLL = 287;
1534
1535 // Logged when the overview times out automatically selecting an app
1536 OVERVIEW_SELECT_TIMEOUT = 288;
1537
1538 // Logged when a user dismisses a task in overview
1539 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001540
1541 // Logged when the user modifying the notification importance slider.
1542 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1543
1544 // Logged when the user saves a modification to notification importance. Negative numbers
1545 // indicate the user lowered the importance; positive means they increased it.
1546 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001547
Chris Wren7c516842016-03-01 16:44:32 -05001548 // ACTION: Long-press power button, then tap "Take bug report" option.
1549 // CATEGORY: GLOBAL_SYSTEM_UI
1550 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001551 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1552
Chris Wren7c516842016-03-01 16:44:32 -05001553 // ACTION: Long-press power button, then long-press "Take bug report" option.
1554 // CATEGORY: GLOBAL_SYSTEM_UI
1555 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001556 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1557
Chris Wren7c516842016-03-01 16:44:32 -05001558 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1559 // CATEGORY: SETTINGS
1560 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001561 // Interactive bug report initiated from Settings.
1562 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1563
Chris Wren7c516842016-03-01 16:44:32 -05001564 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1565 // CATEGORY: SETTINGS
1566 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001567 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001568 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1569
Chris Wren7c516842016-03-01 16:44:32 -05001570 // ACTION: User tapped notification action to cancel a bug report
1571 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001572 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001573 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1574
Chris Wren7c516842016-03-01 16:44:32 -05001575 // ACTION: User tapped notification action to launch bug report details screen
1576 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001577 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001578 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1579
Chris Wren7c516842016-03-01 16:44:32 -05001580 // ACTION: User tapped notification action to take adition screenshot on bug report
1581 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001582 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001583 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1584
Chris Wren7c516842016-03-01 16:44:32 -05001585 // ACTION: User tapped notification to share bug report
1586 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001587 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001588 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1589
Chris Wren7c516842016-03-01 16:44:32 -05001590 // ACTION: User changed bug report name using the details screen
1591 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001592 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001593 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1594
Chris Wren7c516842016-03-01 16:44:32 -05001595 // ACTION: User changed bug report title using the details screen
1596 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001597 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001598 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1599
Chris Wren7c516842016-03-01 16:44:32 -05001600 // ACTION: User changed bug report description using the details screen
1601 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001602 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001603 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1604
Chris Wren7c516842016-03-01 16:44:32 -05001605 // ACTION: User tapped Save in the bug report details screen.
1606 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001607 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001608 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1609
Chris Wren7c516842016-03-01 16:44:32 -05001610 // ACTION: User tapped Cancel in the bug report details screen.
1611 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001612 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001613 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001614
1615 // Tuner: Open/close calibrate dialog.
1616 TUNER_CALIBRATE_DISPLAY = 305;
1617
1618 // Tuner: Open/close color and appearance.
1619 TUNER_COLOR_AND_APPEARANCE = 306;
1620
1621 // Tuner: Apply calibrate dialog.
1622 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1623
1624 // Tuner: Open/close night mode.
1625 TUNER_NIGHT_MODE = 308;
1626
1627 // Tuner: Change night mode.
1628 ACTION_TUNER_NIGHT_MODE = 309;
1629
1630 // Tuner: Change night mode auto.
1631 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1632
1633 // Tuner: Change night mode adjust dark theme.
1634 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1635
1636 // Tuner: Change night mode adjust tint.
1637 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1638
1639 // Tuner: Change night mode adjust brightness.
1640 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1641
1642 // Tuner: Change do not disturb in volume panel.
1643 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1644
1645 // Tuner: Change do not disturb volume buttons shortcut.
1646 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001647
1648 // Logs the action the user takes when an app crashed.
1649 ACTION_APP_CRASH = 316;
1650
1651 // Logs the action the user takes when an app ANR'd.
1652 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001653
1654 // Logged when a user double taps the overview button to launch the previous task
1655 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001656
1657 // Logged when we execute an app transition. This indicates the total delay from startActivity
1658 // until the app transition is starting to animate, in milliseconds.
1659 APP_TRANSITION_DELAY_MS = 319;
1660
1661 // Logged when we execute an app transition. This indicates the reason why the transition
1662 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1663 APP_TRANSITION_REASON = 320;
1664
1665 // Logged when we execute an app transition and we drew a starting window. This indicates the
1666 // delay from startActivity until the starting window was drawn.
1667 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1668
1669 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1670 // the delay from startActivity until all windows have been drawn.
1671 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1672
1673 // Logged when we execute an app transition. This indicates the component name of the current
1674 // transition.
1675 APP_TRANSITION_COMPONENT_NAME = 323;
1676
1677 // Logged when we execute an app transition. This indicates whether the process was already
1678 // running.
1679 APP_TRANSITION_PROCESS_RUNNING = 324;
1680
1681 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1682 // the transition was executed.
1683 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001684
Chris Wren38f98812016-07-13 14:28:40 -04001685 // ACTION: app requested access to a scoped directory, user granted it.
1686 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1687 // CATEGORY: GLOBAL_SYSTEM_UI
1688 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001689 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1690
Chris Wren38f98812016-07-13 14:28:40 -04001691 // ACTION: app requested access to a scoped directory, user denied it.
1692 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1693 // CATEGORY: GLOBAL_SYSTEM_UI
1694 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001695 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1696
Chris Wren38f98812016-07-13 14:28:40 -04001697 // ACTION: app requested access to a scoped directory, user granted it.
1698 // PACKAGE: app that requested access
1699 // CATEGORY: GLOBAL_SYSTEM_UI
1700 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001701 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1702
Chris Wren38f98812016-07-13 14:28:40 -04001703 // ACTION: app requested access to a scoped directory, user denied it.
1704 // PACKAGE: app that requested access.
1705 // CATEGORY: GLOBAL_SYSTEM_UI
1706 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001707 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1708
Chris Wren38f98812016-07-13 14:28:40 -04001709 // ACTION: app requested access to a directory user has already been granted
1710 // access before.
1711 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1712 // CATEGORY: GLOBAL_SYSTEM_UI
1713 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001714 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1715
Chris Wren38f98812016-07-13 14:28:40 -04001716 // ACTION: app requested access to a directory user has already been granted
1717 // access before.
1718 // PACKAGE: app that requested access.
1719 // CATEGORY: GLOBAL_SYSTEM_UI
1720 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001721 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001722
Chris Wren38f98812016-07-13 14:28:40 -04001723 // ACTION: Logged when the user slides a notification and reveals the gear
1724 // beneath it.
1725 // CATEGORY: NOTIFICATION
1726 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001727 ACTION_REVEAL_GEAR = 332;
1728
Chris Wren38f98812016-07-13 14:28:40 -04001729 // ACTION: Logged when the user taps on the gear beneath a notification.
1730 // CATEGORY: NOTIFICATION
1731 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001732 ACTION_TOUCH_GEAR = 333;
1733
Ruben Brunke24b9a62016-02-16 21:38:24 -08001734 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001735 // CATEGORY: SETTINGS
1736 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001737 VR_MANAGE_LISTENERS = 334;
1738
Jason Monk6f5354d2016-03-08 14:18:08 -05001739 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001740 // CATEGORY: SETTINGS
1741 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001742 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001743
Jason Monk6f5354d2016-03-08 14:18:08 -05001744 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001745 // CATEGORY: SETTINGS
1746 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001747 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001748
Jason Monk6f5354d2016-03-08 14:18:08 -05001749 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001750 // CATEGORY: SETTINGS
1751 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001752 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001753
Jason Monk6f5354d2016-03-08 14:18:08 -05001754 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001755 // CATEGORY: SETTINGS
1756 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001757 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001758
Jason Monk6f5354d2016-03-08 14:18:08 -05001759 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001760 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001761 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001762
Jason Monk6f5354d2016-03-08 14:18:08 -05001763 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001764 // CATEGORY: SETTINGS
1765 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001766 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001767
Jason Monk6f5354d2016-03-08 14:18:08 -05001768 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001769 // CATEGORY: SETTINGS
1770 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001771 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001772
Jason Monk6f5354d2016-03-08 14:18:08 -05001773 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001774 // CATEGORY: SETTINGS
1775 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001776 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001777
Jason Monk6f5354d2016-03-08 14:18:08 -05001778 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001779 // CATEGORY: SETTINGS
1780 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001781 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001782
Jason Monk6f5354d2016-03-08 14:18:08 -05001783 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001784 // CATEGORY: SETTINGS
1785 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001786 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001787
Jason Monk6f5354d2016-03-08 14:18:08 -05001788 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001789 // CATEGORY: SETTINGS
1790 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001791 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001792
Jason Monk6f5354d2016-03-08 14:18:08 -05001793 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001794 // CATEGORY: SETTINGS
1795 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001796 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001797
Jason Monk6f5354d2016-03-08 14:18:08 -05001798 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001799 // CATEGORY: SETTINGS
1800 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001801 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001802
Jason Monk6f5354d2016-03-08 14:18:08 -05001803 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001804 // CATEGORY: SETTINGS
1805 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001806 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001807
Jason Monk6f5354d2016-03-08 14:18:08 -05001808 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001809 // CATEGORY: SETTINGS
1810 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001811 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1812
1813 // Used for generic logging of Settings Preference Persistence, should not be used
1814 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001815 // CATEGORY: SETTINGS
1816 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001817 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001818
Jason Monk6f5354d2016-03-08 14:18:08 -05001819 // Settings -> Apps -> Gear -> Special access
1820 SPECIAL_ACCESS = 351;
1821
Muyuan Lia2129992016-03-03 18:30:39 -08001822 // Logs that the user docks window via shortcut key.
1823 WINDOW_DOCK_SHORTCUTS = 352;
1824
Felipe Lemeadccb992016-03-09 17:40:49 -08001825 // User already denied access to the request folder; action takes an integer
1826 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001827 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001828 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1829
1830 // User already denied access to the request folder; action pass package name
1831 // of calling package.
1832 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1833
1834 // User denied access to the request folder and checked 'Do not ask again';
1835 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001836 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001837 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1838
1839 // User denied access to the request folder and checked 'Do not ask again';
1840 // action pass package name of calling package.
1841 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1842
Winson3b6ba1a2016-03-22 15:37:54 -07001843 // Logged when a user dismisses all task in overview
1844 OVERVIEW_DISMISS_ALL = 357;
1845
Jason Monk96defbe2016-03-29 16:51:03 -04001846 // Quick Settings -> Edit
1847 QS_EDIT = 358;
1848
1849 // Quick Settings -> Edit -> Overflow -> Reset
1850 ACTION_QS_EDIT_RESET = 359;
1851
1852 // QS -> Edit - Drag a tile out of the active tiles.
1853 // The _SPEC contains either the spec of the tile or
1854 // the package of the 3rd party app in the PKG field.
1855 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1856 ACTION_QS_EDIT_REMOVE = 361;
1857
1858 // QS -> Edit - Drag a tile into the active tiles.
1859 // The _SPEC contains either the spec of the tile or
1860 // the package of the 3rd party app in the PKG field.
1861 ACTION_QS_EDIT_ADD_SPEC = 362;
1862 ACTION_QS_EDIT_ADD = 363;
1863
1864 // QS -> Edit - Drag a tile within the active tiles.
1865 // The _SPEC contains either the spec of the tile or
1866 // the package of the 3rd party app in the PKG field.
1867 ACTION_QS_EDIT_MOVE_SPEC = 364;
1868 ACTION_QS_EDIT_MOVE = 365;
1869
1870 // Long-press on a QS tile. Tile spec in package field.
1871 ACTION_QS_LONG_PRESS = 366;
1872
Anna Galuszadad131f2016-03-22 13:49:02 -07001873 // OPEN: SUW Welcome Screen -> Vision Settings
1874 // CATEGORY: SETTINGS
1875 // OS: N
1876 SUW_ACCESSIBILITY = 367;
1877
1878 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture
1879 // ACTION: New magnification gesture configuration is chosen
1880 // SUBTYPE: 0 is off, 1 is on
1881 // CATEGORY: SETTINGS
1882 // OS: N
1883 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1884
1885 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1886 // ACTION: New font size is chosen
1887 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1888 // CATEGORY: SETTINGS
1889 // OS: N
1890 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1891
1892 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1893 // ACTION: New display size is chosen
1894 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1895 // CATEGORY: SETTINGS
1896 // OS: N
1897 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1898
1899 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1900 // ACTION: New screen reader configuration is chosen
1901 // SUBTYPE: 0 is off, 1 is on
1902 // CATEGORY: SETTINGS
1903 // OS: N
1904 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
1905
Jason Monkc3620392016-03-30 15:46:03 -04001906 // ------- Begin N Settings conditionals -----
1907 // Conditionals are the green bars at the top of the settings dashboard
1908 // All conditionals will have visible/hide events onResume/onPause
1909 // but they will also be used as extra ints in the
1910 // dismiss/expand/collapse/click/button events
1911
1912 // swipe away conditional
1913 ACTION_SETTINGS_CONDITION_DISMISS = 372;
1914
1915 // click on collapsed conditional or clicks expand button
1916 ACTION_SETTINGS_CONDITION_EXPAND = 373;
1917
1918 // click collapse button on expanded conditional
1919 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
1920
1921 // click main area of expanded conditional
1922 ACTION_SETTINGS_CONDITION_CLICK = 375;
1923
1924 // click a direct button on expanded conditional
1925 ACTION_SETTINGS_CONDITION_BUTTON = 376;
1926
1927 // Airplane mode on
1928 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
1929 // AKA Data saver on
1930 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
1931 // Battery saver on
1932 SETTINGS_CONDITION_BATTERY_SAVER = 379;
1933 // Cellular data off
1934 SETTINGS_CONDITION_CELLULAR_DATA = 380;
1935 // Do not disturb on
1936 SETTINGS_CONDITION_DND = 381;
1937 // Hotspot on
1938 SETTINGS_CONDITION_HOTSPOT = 382;
1939 // Work profile off
1940 SETTINGS_CONDITION_WORK_MODE = 383;
1941
Jason Monk1b5d87b2016-03-30 16:03:15 -04001942 // ------- Begin N Settings suggestions -----
1943 // Since suggestions come from system apps, suggestions will
1944 // have generic constants and the package providing the suggestion
1945 // will be put in the package field. For suggestions in the Settings
1946 // package, the class name will be filled in instead (since settings
1947 // provides several suggetions).
1948
1949 // Settings shown/hidden on main settings dashboard.
1950 // These are actually visibility events, but visible/hidden doesn't
1951 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04001952 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
1953 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001954
1955 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04001956 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001957
1958 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04001959 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001960
Jason Monk397df682016-03-28 15:48:34 -04001961 // Settings > Apps > Gear > Special Access > Premium SMS access
1962 PREMIUM_SMS_ACCESS = 388;
1963
Jorim Jaggi29379ec2016-04-11 23:43:42 -07001964 // Logged when the user resizes the docked stack. Arguments:
1965 // 0: Split 50:50
1966 // 1: Docked smaller
1967 // 2: Docked larger
1968 ACTION_WINDOW_DOCK_RESIZE = 389;
1969
1970 // User exits split-screen by dragging the divider to the side of the screen. Arguments
1971 // 0: Docked gets maximized
1972 // 1: Fullscreen gets maximized
1973 ACTION_WINDOW_UNDOCK_MAX = 390;
1974
1975 // User tried to dock an unresizable app.
1976 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
1977
Julia Reynolds4d920ff2016-04-06 20:31:05 -04001978 // System UI Tuner > Other > Power notification controls
1979 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
1980
1981 // System UI Tuner > Other > Power notification controls > Toggle on/off
1982 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
1983
Chris Wren38f98812016-07-13 14:28:40 -04001984 // Action: user enable / disabled data saver using Settings
1985 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
1986 // VALUE: 1 for enabled, 0 for disabled
1987 // CATEGORY: SETTINGS
1988 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001989 ACTION_DATA_SAVER_MODE = 394;
1990
Chris Wren38f98812016-07-13 14:28:40 -04001991 // User whitelisted an app for Data Saver mode; action pass package name of app
1992 // Action: user enable / disabled data saver using Settings
1993 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
1994 // or
1995 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
1996 // VALUE: package name of APP
1997 // CATEGORY: SETTINGS
1998 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001999 ACTION_DATA_SAVER_WHITELIST = 395;
2000
Chris Wren38f98812016-07-13 14:28:40 -04002001 // User blacklisted an app for Data Saver mode; action pass package name of app
2002 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2003 // VALUE: package name of APP
2004 // CATEGORY: SETTINGS
2005 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002006 ACTION_DATA_SAVER_BLACKLIST = 396;
2007
Adrian Roosceeb04c2016-04-25 14:00:54 -07002008 // User opened a remote input view associated with a notification. Passes package name of app
2009 // that posted the notification. Note that this can also happen transiently during notification
2010 // reinflation.
2011 ACTION_REMOTE_INPUT_OPEN = 397;
2012
2013 // User attempt to send data through a remote input view associated with a notification.
2014 // Passes package name of app that posted the notification. May succeed or fail.
2015 ACTION_REMOTE_INPUT_SEND = 398;
2016
2017 // Failed attempt to send data through a remote input view associated with a
2018 // notification. Passes package name of app that posted the notification.
2019 ACTION_REMOTE_INPUT_FAIL = 399;
2020
2021 // User closed a remote input view associated with a notification. Passes package name of app
2022 // that posted the notification. Note that this can also happen transiently during notification
2023 // reinflation.
2024 ACTION_REMOTE_INPUT_CLOSE = 400;
2025
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002026 // OPEN: Settings > Accounts > Work profile settings
2027 // CATEGORY: SETTINGS
2028 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2029
Jason Monk25118d12016-05-10 13:25:50 -04002030 // Settings -> Dev options -> Convert to file encryption
2031 CONVERT_FBE = 402;
2032
2033 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2034 CONVERT_FBE_CONFIRM = 403;
2035
2036 // Settings -> Dev options -> Running services
2037 RUNNING_SERVICES = 404;
2038
Jason Monka1f697f2016-05-06 15:09:44 -04002039 // The dialog shown by 3P intent to change current webview implementation.
2040 WEBVIEW_IMPLEMENTATION = 405;
2041
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002042 // Settings launched from expanded quick settings.
2043 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2044
Chris Wren698b1702016-05-23 11:16:32 -04002045 // Notification expansion state toggled by the expand affordance.
2046 ACTION_NOTIFICATION_EXPANDER = 407;
2047
2048 // Notification group expansion state toggled by the expand affordance.
2049 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2050
Chris Wren7ee84182016-05-27 13:34:02 -04002051
Chris Wren6abeeb92016-05-26 14:44:38 -04002052 // Notification expansion state toggled by the expand gesture.
2053 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2054
2055 // Notification group expansion state toggled by the expand gesture.
2056 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2057
Bhavik Singh3451da42016-06-01 18:25:59 -07002058 // User performs gesture that activates the ambient display
2059 // 1: Gesture performed is Nudge
2060 // 2: Gesture performed is Pickup
2061 // 4: Gesture performed is Double Tap
2062 ACTION_AMBIENT_GESTURE = 411;
2063
Jason Monk9fa5f822016-05-11 10:26:31 -04002064 // ---- End N Constants, all N constants go above this line ----
2065
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002066 // ------- Begin N App Disambig Shade -----
2067 // Application disambig shade opened or closed with a featured app.
2068 // These are actually visibility events, but visible/hidden doesn't
2069 // take a package, so these are being logged as actions.
2070 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002071 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2072 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002073
2074 // Application disambig shade opened or closed without a featured app.
2075 // These are actually visibility events, but visible/hidden doesn't
2076 // take a package, so these are being logged as actions.
2077 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002078 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2079 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002080
2081 // User opens in an app by pressing “Always” in the application disambig shade.
2082 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002083 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002084
2085 // User opens in an app by pressing “Just Once” in the application disambig shade.
2086 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002087 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002088
2089 // User opens in an app by tapping on its name in the application disambig shade.
2090 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002091 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002092
Daniel Nishi010aa492016-05-11 09:42:24 -07002093 // OPEN: Settings > Internal storage > Storage manager
2094 // CATEGORY: SETTINGS
2095 STORAGE_MANAGER_SETTINGS = 458;
2096
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002097 // OPEN: Settings -> Gestures
2098 // CATEGORY: SETTINGS
2099 SETTINGS_GESTURES = 459;
2100
Daniel Nishi597e67f2016-05-18 13:56:13 -07002101 // ------ Begin Deletion Helper ------
2102 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2103 // SUBTYPE: false is off, true is on
2104 // CATEGORY: SETTINGS
2105 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002106
Daniel Nishi597e67f2016-05-18 13:56:13 -07002107 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2108 // SUBTYPE: false is off, true is on
2109 // CATEGORY: SETTINGS
2110 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2111
2112 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2113 // CATEGORY: SETTINGS
2114 // PACKAGE: Unchecked app
2115 ACTION_DELETION_SELECTION_APP_ON = 462;
2116
2117 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2118 // CATEGORY: SETTINGS
2119 // PACKAGE: Checked app
2120 ACTION_DELETION_SELECTION_APP_OFF = 463;
2121
2122 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2123 // SUBTYPE: false is expanded, true is collapsed
2124 // CATEGORY: SETTINGS
2125 ACTION_DELETION_APPS_COLLAPSED = 464;
2126
2127 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2128 // SUBTYPE: false is off, true is on
2129 // CATEGORY: SETTINGS
2130 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2131
2132 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2133 // SUBTYPE: false is expanded, true is collapsed
2134 // CATEGORY: SETTINGS
2135 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2136
2137 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2138 // CATEGORY: SETTINGS
2139 ACTION_DELETION_HELPER_CLEAR = 467;
2140
2141 // ACTION: Settings > Storage > Free Up Space > Cancel
2142 // CATEGORY: SETTINGS
2143 ACTION_DELETION_HELPER_CANCEL = 468;
2144
2145 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2146 // CATEGORY: SETTINGS
2147 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2148
2149 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2150 // CATEGORY: SETTINGS
2151 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2152
2153 // Deletion helper encountered an error during package deletion.
2154 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2155
2156 // Deletion helper encountered an error during downloads folder deletion.
2157 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2158
2159 // Deletion helper encountered an error during photo and video deletion.
2160 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2161
Fan Zhang5e956e82016-05-06 10:51:47 -07002162 // OPEN: Settings (root page if there are multiple tabs)
2163 // CATEGORY: SETTINGS
2164 DASHBOARD_CONTAINER = 474;
2165
2166 // OPEN: Settings -> SUPPORT TAB
2167 // CATEGORY: SETTINGS
2168 SUPPORT_FRAGMENT = 475;
2169
2170 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002171 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002172 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002173
2174 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002175 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002176 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2177
Fan Zhanga1985502016-06-16 16:48:38 -07002178 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002179 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002180 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2181
2182 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002183 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002184 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2185
2186 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002187 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002188 ACTION_SUPPORT_SIGN_IN = 480;
2189
2190 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002191 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002192 ACTION_SUPPORT_PHONE = 481;
2193
2194 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002195 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002196 ACTION_SUPPORT_CHAT = 482;
2197
2198 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002199 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002200 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2201
2202 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002203 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002204 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2205
Fan Zhang80807212016-06-30 12:26:55 -07002206 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002207 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002208 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2209
2210 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002211 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002212 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2213
2214 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002215 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002216 ACTION_SUPPORT_DIAL_TOLLED = 487;
2217
Justin Klaassen19494272016-07-18 21:38:24 -07002218 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002219 // CATEGORY: SETTINGS
2220 NIGHT_DISPLAY_SETTINGS = 488;
2221
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002222 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002223 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002224 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2225
Jason Monk484fd362016-07-13 15:24:32 -04002226 // Settings launched from collapsed quick settings.
2227 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2228
Justin Klaassen19494272016-07-18 21:38:24 -07002229 // OPEN: QS Night Light tile shown
2230 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002231 // SUBTYPE: 0 is off, 1 is on
2232 // CATEGORY: QUICK_SETTINGS
2233 QS_NIGHT_DISPLAY = 491;
2234
Justin Klaassen19494272016-07-18 21:38:24 -07002235 // Night Light on
2236 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2237
Doris Ling3c00afb2016-07-19 17:04:21 -07002238 // System navigation key up.
2239 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2240
2241 // System navigation key down.
2242 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2243
Doris Ling6dd3e462016-08-04 13:17:27 -07002244 // OPEN: Settings > Display -> Ambient Display
2245 // CATEGORY: SETTINGS
2246 ACTION_AMBIENT_DISPLAY = 495;
2247
Adrian Roos159ef7b2016-02-25 11:58:32 -08002248 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2249
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002250 // ACTION: The lockscreen gets shown because the SIM card was removed
2251 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2252 // CATEGORY: GLOBAL_SYSTEM_UI
2253 // OS: N-MR2
2254 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2255
2256 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2257
Clara Bayarric17a5982016-04-15 12:26:47 +01002258 // ------- Begin N Keyboard Shortcuts Helper -----
2259 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002260 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002261
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002262 // OPEN: Print Preview screen
2263 // Package: Package of app where print job is from
2264 PRINT_PREVIEW = 501;
2265
2266 // OPEN: User expands full print job options shade in print preview.
2267 PRINT_JOB_OPTIONS = 502;
2268
2269 // OPEN: “All Printers” screen for selecting printer
2270 // Subtype: # of printers listed
2271 PRINT_ALL_PRINTERS = 503;
2272
2273 // OPEN: “Add Printers” screen for adding printers
2274 // Subtype: # of enabled print service listed
2275 PRINT_ADD_PRINTERS = 504;
2276
2277 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2278 // Package: Package of print service.
2279 ACTION_PRINT = 505;
2280
2281 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2282 // Count all ACTION_PRINTER_SELECT_ALL actions.
2283 // Package: Package of print service tied to printer
2284 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2285
2286 // ACTION: User selects a printer from the “All printers” screen.
2287 // Package: Package of print service tied to printer
2288 ACTION_PRINTER_SELECT_ALL = 507;
2289
2290 // ACTION: User changes an option for the print job from print preview.
2291 // Subtype: 1: Copies
2292 // 2: Color mode
2293 // 3: Duplex mode
2294 // 4: Media (==Paper) size
2295 // 5: Orientation
2296 // 6: Page range
2297 // Package: Package of print service tied to printer
2298 ACTION_PRINT_JOB_OPTIONS = 508;
2299
2300 // ACTION: User searches for printer from All Printers
2301 ACTION_PRINTER_SEARCH = 509;
2302
2303 // ACTION: User selects “Add print service” button from All Printers
2304 ACTION_PRINT_SERVICE_ADD = 510;
2305
2306 // ACTION: User Enables/Disables Print Service via any means.
2307 // Subtype: 0: Enabled
2308 // 1: Disabled
2309 ACTION_PRINT_SERVICE_TOGGLE = 511;
2310
2311 // ACTION: User installs print recommended print service
2312 // Package: Package of print service
2313 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2314
Doris Ling88a6b162016-08-08 16:17:43 -07002315 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2316 // SUBTYPE: sub settings classname
2317 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2318
Fan Zhang92c60382016-08-08 14:03:53 -07002319 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2320 USER_DICTIONARY_SETTINGS = 514;
2321
2322 // OPEN: Settings > Date & time > Select time zone
2323 ZONE_PICKER = 515;
2324
2325 // OPEN: Settings > Security > Device administrators
2326 DEVICE_ADMIN_SETTINGS = 516;
2327
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002328 // ACTION: Managed provisioning was launched to set this package as DPC app.
2329 // PACKAGE: DPC's package name.
2330 PROVISIONING_DPC_PACKAGE_NAME = 517;
2331
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002332 // ACTION: Managed provisioning triggered DPC installation.
2333 // PACKAGE: Package name of package which installed DPC.
2334 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2335
2336 // ACTION: Logged when provisioning activity finishes.
2337 // TIME: Indicates time taken by provisioning activity to finish in MS.
2338 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2339
2340 // ACTION: Logged when preprovisioning activity finishes.
2341 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2342 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2343
2344 // ACTION: Logged when encrypt device activity finishes.
2345 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2346 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2347
2348 // ACTION: Logged when web activity finishes.
2349 // TIME: Indicates total time taken by web activity to finish in MS.
2350 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2351
2352 // ACTION: Logged when trampoline activity finishes.
2353 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2354 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2355
2356 // ACTION: Logged when encryption activity finishes.
2357 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2358 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2359
2360 // ACTION: Logged when finalization activity finishes.
2361 // TIME: Indicates time taken by finalization activity to finish in MS.
2362 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002363
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002364 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002365 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002366
Fan Zhang95094182016-08-24 18:14:16 -07002367 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002368 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002369
2370 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002371 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002372
2373 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002374 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002375
2376 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002377 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002378
2379 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002380 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002381
Fan Zhangc1352ae2016-09-16 12:46:11 -07002382 // OPEN: Settings > Security > Use one lock dialog
2383 DIALOG_UNIFICATION_CONFIRMATION = 532;
2384
2385 // OPEN: Settings > Security > User Credential
2386 DIALOG_USER_CREDENTIAL = 533;
2387
2388 // OPEN: Settings > Accounts > Remove account
2389 DIALOG_REMOVE_USER = 534;
2390
2391 // OPEN: Settings > Accounts > Confirm auto sync dialog
2392 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2393
2394 // OPEN: Settings > Apps > Dialog for running service details
2395 DIALOG_RUNNIGN_SERVICE = 536;
2396
2397 // OPEN: Settings > Dialog for hiding home settings
2398 DIALOG_NO_HOME = 537;
2399
2400 // OPEN: Settings > Bluetooth > Rename this device
2401 DIALOG_BLUETOOTH_RENAME = 538;
2402
2403 // OPEN: Settings > Bluetooth > Paired device profile
2404 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2405
2406 // OPEN: Settings > Battery optimization > details for app
2407 DIALOG_HIGH_POWER_DETAILS = 540;
2408
2409 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2410 DIALOG_KEYBOARD_LAYOUT = 541;
2411
2412 // OPEN: Settings > Wifi > WPS Setup dialog
2413 DIALOG_WPS_SETUP = 542;
2414
2415 // OPEN: Settings > WIFI Scan permission dialog
2416 DIALOG_WIFI_SCAN_MODE = 543;
2417
2418 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2419 DIALOG_WIFI_SKIP = 544;
2420
2421 // OPEN: Settings > Wireless > VPN > Config dialog
2422 DIALOG_LEGACY_VPN_CONFIG = 545;
2423
2424 // OPEN: Settings > Wireless > VPN > Config dialog for app
2425 DIALOG_VPN_APP_CONFIG = 546;
2426
2427 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2428 DIALOG_VPN_CANNOT_CONNECT = 547;
2429
2430 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2431 DIALOG_VPN_REPLACE_EXISTING = 548;
2432
2433 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2434 DIALOG_BILLING_CYCLE = 549;
2435
2436 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2437 DIALOG_BILLING_BYTE_LIMIT = 550;
2438
2439 // OPEN: Settings > Billing cycle > turn on data limit dialog
2440 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2441
2442 // OPEN: Settings > Service > Turn off notification access dialog
2443 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2444
2445 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2446 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2447
2448 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2449 DIALOG_ZEN_ACCESS_GRANT = 554;
2450
2451 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2452 DIALOG_ZEN_ACCESS_REVOKE = 555;
2453
2454 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2455 DIALOG_ZEN_TIMEPICKER = 556;
2456
2457 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2458 DIALOG_SERVICE_ACCESS_WARNING = 557;
2459
2460 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2461 DIALOG_APP_INFO_ACTION = 558;
2462
2463 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2464 DIALOG_VOLUME_FORGET = 559;
2465
2466 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2467 DIALOG_VOLUME_SLOW_WARNING = 560;
2468
2469 // OPEN: Settings > Storage > Dialog for initializing a volume
2470 DIALOG_VOLUME_INIT = 561;
2471
2472 // OPEN: Settings > Storage > Dialog for unmounting a volume
2473 DIALOG_VOLUME_UNMOUNT = 562;
2474
2475 // OPEN: Settings > Storage > Dialog for renaming a volume
2476 DIALOG_VOLUME_RENAME = 563;
2477
2478 // OPEN: Settings > Storage > Dialog for clear cache
2479 DIALOG_STORAGE_CLEAR_CACHE = 564;
2480
2481 // OPEN: Settings > Storage > Dialog for system info
2482 DIALOG_STORAGE_SYSTEM_INFO = 565;
2483
2484 // OPEN: Settings > Storage > Dialog for other info
2485 DIALOG_STORAGE_OTHER_INFO = 566;
2486
2487 // OPEN: Settings > Storage > Dialog for user info
2488 DIALOG_STORAGE_USER_INFO = 567;
2489
2490 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2491 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2492
2493 // OPEN: Settings > Add fingerprint > Error dialog
2494 DIALOG_FINGERPINT_ERROR = 569;
2495
2496 // OPEN: Settings > Fingerprint > Rename or delete dialog
2497 DIALOG_FINGERPINT_EDIT = 570;
2498
2499 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2500 DIALOG_FINGERPINT_DELETE_LAST = 571;
2501
2502 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2503 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2504
2505 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2506 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2507
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002508 // OPEN: Settings > Proxy Selector error dialog
2509 DIALOG_PROXY_SELECTOR_ERROR = 574;
2510
2511 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2512 DIALOG_WIFI_P2P_DISCONNECT = 575;
2513
2514 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2515 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2516
2517 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2518 DIALOG_WIFI_P2P_RENAME = 577;
2519
2520 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2521 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2522
2523 // OPEN: Settings > APN > Restore default dialog
2524 DIALOG_APN_RESTORE_DEFAULT = 579;
2525
2526 // OPEN: Settings > Dream > When to dream dialog
2527 DIALOG_DREAM_START_DELAY = 580;
2528
2529 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2530 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2531
2532 // OPEN: Settings > Tether > AP setting dialog
2533 DIALOG_AP_SETTINGS = 582;
2534
2535 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2536 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2537
2538 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2539 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2540
2541 // OPEN: Settings > Account > Remove account dialog
2542 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2543
2544 // OPEN: Settings > Account > Remove account failed dialog
2545 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2546
2547 // OPEN: Settings > Account > Cannot do onetime sync dialog
2548 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2549
2550 // OPEN: Settings > Display > Night light > Set start time dialog
2551 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2552
2553 // OPEN: Settings > Display > Night light > Set end time dialog
2554 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2555
2556 // OPEN: Settings > User > Edit info dialog
2557 DIALOG_USER_EDIT = 590;
2558
2559 // OPEN: Settings > User > Confirm remove dialog
2560 DIALOG_USER_REMOVE = 591;
2561
2562 // OPEN: Settings > User > Enable calling dialog
2563 DIALOG_USER_ENABLE_CALLING = 592;
2564
2565 // OPEN: Settings > User > Enable calling and sms dialog
2566 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2567
2568 // OPEN: Settings > User > Cannot manage device message dialog
2569 DIALOG_USER_CANNOT_MANAGE = 594;
2570
2571 // OPEN: Settings > User > Add user dialog
2572 DIALOG_USER_ADD = 595;
2573
2574 // OPEN: Settings > User > Setup user dialog
2575 DIALOG_USER_SETUP = 596;
2576
2577 // OPEN: Settings > User > Setup profile dialog
2578 DIALOG_USER_SETUP_PROFILE = 597;
2579
2580 // OPEN: Settings > User > Choose user type dialog
2581 DIALOG_USER_CHOOSE_TYPE = 598;
2582
2583 // OPEN: Settings > User > Need lockscreen dialog
2584 DIALOG_USER_NEED_LOCKSCREEN = 599;
2585
2586 // OPEN: Settings > User > Confirm exit guest mode dialog
2587 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2588
2589 // OPEN: Settings > User > Edit user profile dialog
2590 DIALOG_USER_EDIT_PROFILE = 601;
2591
2592 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2593 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2594
2595 // OPEN: Settings > Wifi > Edit AP dialog
2596 DIALOG_WIFI_AP_EDIT = 603;
2597
2598 // OPEN: Settings > Wifi > PBC Config dialog
2599 DIALOG_WIFI_PBC = 604;
2600
2601 // OPEN: Settings > Wifi > Display pin dialog
2602 DIALOG_WIFI_PIN = 605;
2603
2604 // OPEN: Settings > Wifi > Write config to NFC dialog
2605 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002606 // OPEN: Settings > Date > Date picker dialog
2607 DIALOG_DATE_PICKER = 607;
2608
2609 // OPEN: Settings > Date > Time picker dialog
2610 DIALOG_TIME_PICKER = 608;
2611
2612 // OPEN: Settings > Wireless > Manage wireless plan dialog
2613 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002614
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002615 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002616 PROVISIONING_NETWORK_TYPE = 610;
2617
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002618 // ACTION: Logs action which triggered provisioning.
2619 PROVISIONING_ACTION = 611;
2620
Mahaver Chopraab282072016-10-06 19:19:23 +01002621 // ACTION: Logs extra passed by the dpc while provisioning.
2622 PROVISIONING_EXTRA = 612;
2623
Salvador Martinez64867c12016-10-14 15:25:09 -07002624 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2625 BLUETOOTH_DIALOG_FRAGMENT = 613;
2626
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002627 // ACTION: Logs provisioning started by zero touch.
2628 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2629
2630 // ACTION: Logs provisioning started by NFC bump.
2631 PROVISIONING_ENTRY_POINT_NFC = 615;
2632
2633 // ACTION: Logs provisioning started using QR code.
2634 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2635
2636 // ACTION: Logs provisioning started using adb.
2637 PROVISIONING_ENTRY_POINT_ADB = 617;
2638
2639 // ACTION: Logs provisioning started by trusted source.
2640 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2641
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002642 // ACTION: Logged when copy account task finishes.
2643 // TIME: Indicates time taken by copy account task to finish in MS.
2644 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2645
2646 // ACTION: Logged when create profile task finishes.
2647 // TIME: Indicates time taken by create profile task to finish in MS.
2648 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2649
2650 // ACTION: Logged when start profile task finishes.
2651 // TIME: Indicates time taken by start profile task to finish in MS.
2652 PROVISIONING_START_PROFILE_TASK_MS = 621;
2653
2654 // ACTION: Logged when download package task finishes.
2655 // TIME: Indicates time taken by download package task to finish in MS.
2656 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2657
2658 // ACTION: Logged when install package task finishes.
2659 // TIME: Indicates time taken by install package task to finish in MS.
2660 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2661
2662 // ACTION: User cancelled provisioning.
2663 PROVISIONING_CANCELLED = 624;
2664
2665 // ACTION: Logged when provisioning throws an error.
2666 PROVISIONING_ERROR = 625;
2667
2668 // ACTION: Logs the status of copying user account during provisioning.
2669 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2670
2671 // ACTION: Logs the end to end time taken by all provisioning tasks.
2672 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2673
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002674 // OPEN: Settings > Privacy
2675 // CATEGORY: SETTINGS
2676 // OS: O
2677 ENTERPRISE_PRIVACY_SETTINGS = 628;
2678
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002679 // ACTION: Longpress on a TextView.
2680 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2681 // CATEGORY: TEXT_CONTROLS
2682 // OS: O
2683 TEXT_LONGPRESS = 629;
2684
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002685 // ACTION: An app requested an unknown permission
2686 // PACKAGE: The package name of the app requesting the permission
2687 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2688
2689 // ACTION: An app was granted an unknown permission
2690 // PACKAGE: The package name of the app that was granted the permission
2691 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2692
2693 // ACTION: An app requested an unknown permission and the request was denied
2694 // PACKAGE: The package name of the app requesting the permission
2695 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2696
2697 // ACTION: An unknown permission was revoked for an app
2698 // PACKAGE: The package name of the app the permission was revoked for
2699 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2700
2701 // ACTION: An app requested the permission READ_CALENDAR
2702 // PACKAGE: The package name of the app requesting the permission
2703 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2704
2705 // ACTION: An app was granted the permission READ_CALENDAR
2706 // PACKAGE: The package name of the app that was granted the permission
2707 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2708
2709 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2710 // PACKAGE: The package name of the app requesting the permission
2711 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2712
2713 // ACTION: The permission READ_CALENDAR was revoked for an app
2714 // PACKAGE: The package name of the app the permission was revoked for
2715 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2716
2717 // ACTION: An app requested the permission WRITE_CALENDAR
2718 // PACKAGE: The package name of the app requesting the permission
2719 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2720
2721 // ACTION: An app was granted the permission WRITE_CALENDAR
2722 // PACKAGE: The package name of the app that was granted the permission
2723 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2724
2725 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2726 // PACKAGE: The package name of the app requesting the permission
2727 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2728
2729 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2730 // PACKAGE: The package name of the app the permission was revoked for
2731 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2732
2733 // ACTION: An app requested the permission CAMERA
2734 // PACKAGE: The package name of the app requesting the permission
2735 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2736
2737 // ACTION: An app was granted the permission CAMERA
2738 // PACKAGE: The package name of the app that was granted the permission
2739 ACTION_PERMISSION_GRANT_CAMERA = 643;
2740
2741 // ACTION: An app requested the permission CAMERA and the request was denied
2742 // PACKAGE: The package name of the app requesting the permission
2743 ACTION_PERMISSION_DENIED_CAMERA = 644;
2744
2745 // ACTION: The permission CAMERA was revoked for an app
2746 // PACKAGE: The package name of the app the permission was revoked for
2747 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2748
2749 // ACTION: An app requested the permission READ_CONTACTS
2750 // PACKAGE: The package name of the app requesting the permission
2751 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2752
2753 // ACTION: An app was granted the permission READ_CONTACTS
2754 // PACKAGE: The package name of the app that was granted the permission
2755 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2756
2757 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2758 // PACKAGE: The package name of the app requesting the permission
2759 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2760
2761 // ACTION: The permission READ_CONTACTS was revoked for an app
2762 // PACKAGE: The package name of the app the permission was revoked for
2763 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2764
2765 // ACTION: An app requested the permission WRITE_CONTACTS
2766 // PACKAGE: The package name of the app requesting the permission
2767 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2768
2769 // ACTION: An app was granted the permission WRITE_CONTACTS
2770 // PACKAGE: The package name of the app that was granted the permission
2771 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2772
2773 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2774 // PACKAGE: The package name of the app requesting the permission
2775 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2776
2777 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2778 // PACKAGE: The package name of the app the permission was revoked for
2779 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2780
2781 // ACTION: An app requested the permission GET_ACCOUNTS
2782 // PACKAGE: The package name of the app requesting the permission
2783 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2784
2785 // ACTION: An app was granted the permission GET_ACCOUNTS
2786 // PACKAGE: The package name of the app that was granted the permission
2787 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2788
2789 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2790 // PACKAGE: The package name of the app requesting the permission
2791 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2792
2793 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2794 // PACKAGE: The package name of the app the permission was revoked for
2795 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2796
2797 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2798 // PACKAGE: The package name of the app requesting the permission
2799 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2800
2801 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2802 // PACKAGE: The package name of the app that was granted the permission
2803 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2804
2805 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2806 // PACKAGE: The package name of the app requesting the permission
2807 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2808
2809 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2810 // PACKAGE: The package name of the app the permission was revoked for
2811 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2812
2813 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2814 // PACKAGE: The package name of the app requesting the permission
2815 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2816
2817 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2818 // PACKAGE: The package name of the app that was granted the permission
2819 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2820
2821 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2822 // PACKAGE: The package name of the app requesting the permission
2823 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2824
2825 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2826 // PACKAGE: The package name of the app the permission was revoked for
2827 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2828
2829 // ACTION: An app requested the permission RECORD_AUDIO
2830 // PACKAGE: The package name of the app requesting the permission
2831 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2832
2833 // ACTION: An app was granted the permission RECORD_AUDIO
2834 // PACKAGE: The package name of the app that was granted the permission
2835 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2836
2837 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2838 // PACKAGE: The package name of the app requesting the permission
2839 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2840
2841 // ACTION: The permission RECORD_AUDIO was revoked for an app
2842 // PACKAGE: The package name of the app the permission was revoked for
2843 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2844
2845 // ACTION: An app requested the permission READ_PHONE_STATE
2846 // PACKAGE: The package name of the app requesting the permission
2847 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2848
2849 // ACTION: An app was granted the permission READ_PHONE_STATE
2850 // PACKAGE: The package name of the app that was granted the permission
2851 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2852
2853 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2854 // PACKAGE: The package name of the app requesting the permission
2855 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2856
2857 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2858 // PACKAGE: The package name of the app the permission was revoked for
2859 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2860
2861 // ACTION: An app requested the permission CALL_PHONE
2862 // PACKAGE: The package name of the app requesting the permission
2863 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2864
2865 // ACTION: An app was granted the permission CALL_PHONE
2866 // PACKAGE: The package name of the app that was granted the permission
2867 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2868
2869 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2870 // PACKAGE: The package name of the app requesting the permission
2871 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2872
2873 // ACTION: The permission CALL_PHONE was revoked for an app
2874 // PACKAGE: The package name of the app the permission was revoked for
2875 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2876
2877 // ACTION: An app requested the permission READ_CALL_LOG
2878 // PACKAGE: The package name of the app requesting the permission
2879 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2880
2881 // ACTION: An app was granted the permission READ_CALL_LOG
2882 // PACKAGE: The package name of the app that was granted the permission
2883 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2884
2885 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2886 // PACKAGE: The package name of the app requesting the permission
2887 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2888
2889 // ACTION: The permission READ_CALL_LOG was revoked for an app
2890 // PACKAGE: The package name of the app the permission was revoked for
2891 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2892
2893 // ACTION: An app requested the permission WRITE_CALL_LOG
2894 // PACKAGE: The package name of the app requesting the permission
2895 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
2896
2897 // ACTION: An app was granted the permission WRITE_CALL_LOG
2898 // PACKAGE: The package name of the app that was granted the permission
2899 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
2900
2901 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
2902 // PACKAGE: The package name of the app requesting the permission
2903 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
2904
2905 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
2906 // PACKAGE: The package name of the app the permission was revoked for
2907 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
2908
2909 // ACTION: An app requested the permission ADD_VOICEMAIL
2910 // PACKAGE: The package name of the app requesting the permission
2911 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
2912
2913 // ACTION: An app was granted the permission ADD_VOICEMAIL
2914 // PACKAGE: The package name of the app that was granted the permission
2915 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
2916
2917 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
2918 // PACKAGE: The package name of the app requesting the permission
2919 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
2920
2921 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
2922 // PACKAGE: The package name of the app the permission was revoked for
2923 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
2924
2925 // ACTION: An app requested the permission USE_SIP
2926 // PACKAGE: The package name of the app requesting the permission
2927 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
2928
2929 // ACTION: An app was granted the permission USE_SIP
2930 // PACKAGE: The package name of the app that was granted the permission
2931 ACTION_PERMISSION_GRANT_USE_SIP = 691;
2932
2933 // ACTION: An app requested the permission USE_SIP and the request was denied
2934 // PACKAGE: The package name of the app requesting the permission
2935 ACTION_PERMISSION_DENIED_USE_SIP = 692;
2936
2937 // ACTION: The permission USE_SIP was revoked for an app
2938 // PACKAGE: The package name of the app the permission was revoked for
2939 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
2940
2941 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
2942 // PACKAGE: The package name of the app requesting the permission
2943 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
2944
2945 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
2946 // PACKAGE: The package name of the app that was granted the permission
2947 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
2948
2949 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
2950 // PACKAGE: The package name of the app requesting the permission
2951 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
2952
2953 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
2954 // PACKAGE: The package name of the app the permission was revoked for
2955 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
2956
2957 // ACTION: An app requested the permission READ_CELL_BROADCASTS
2958 // PACKAGE: The package name of the app requesting the permission
2959 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
2960
2961 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
2962 // PACKAGE: The package name of the app that was granted the permission
2963 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
2964
2965 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
2966 // PACKAGE: The package name of the app requesting the permission
2967 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
2968
2969 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
2970 // PACKAGE: The package name of the app the permission was revoked for
2971 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
2972
2973 // ACTION: An app requested the permission BODY_SENSORS
2974 // PACKAGE: The package name of the app requesting the permission
2975 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
2976
2977 // ACTION: An app was granted the permission BODY_SENSORS
2978 // PACKAGE: The package name of the app that was granted the permission
2979 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
2980
2981 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
2982 // PACKAGE: The package name of the app requesting the permission
2983 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
2984
2985 // ACTION: The permission BODY_SENSORS was revoked for an app
2986 // PACKAGE: The package name of the app the permission was revoked for
2987 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
2988
2989 // ACTION: An app requested the permission SEND_SMS
2990 // PACKAGE: The package name of the app requesting the permission
2991 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
2992
2993 // ACTION: An app was granted the permission SEND_SMS
2994 // PACKAGE: The package name of the app that was granted the permission
2995 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
2996
2997 // ACTION: An app requested the permission SEND_SMS and the request was denied
2998 // PACKAGE: The package name of the app requesting the permission
2999 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3000
3001 // ACTION: The permission SEND_SMS was revoked for an app
3002 // PACKAGE: The package name of the app the permission was revoked for
3003 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3004
3005 // ACTION: An app requested the permission RECEIVE_SMS
3006 // PACKAGE: The package name of the app requesting the permission
3007 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3008
3009 // ACTION: An app was granted the permission RECEIVE_SMS
3010 // PACKAGE: The package name of the app that was granted the permission
3011 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3012
3013 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3014 // PACKAGE: The package name of the app requesting the permission
3015 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3016
3017 // ACTION: The permission RECEIVE_SMS was revoked for an app
3018 // PACKAGE: The package name of the app the permission was revoked for
3019 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3020
3021 // ACTION: An app requested the permission READ_SMS
3022 // PACKAGE: The package name of the app requesting the permission
3023 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3024
3025 // ACTION: An app was granted the permission READ_SMS
3026 // PACKAGE: The package name of the app that was granted the permission
3027 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3028
3029 // ACTION: An app requested the permission READ_SMS and the request was denied
3030 // PACKAGE: The package name of the app requesting the permission
3031 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3032
3033 // ACTION: The permission READ_SMS was revoked for an app
3034 // PACKAGE: The package name of the app the permission was revoked for
3035 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3036
3037 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3038 // PACKAGE: The package name of the app requesting the permission
3039 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3040
3041 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3042 // PACKAGE: The package name of the app that was granted the permission
3043 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3044
3045 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3046 // PACKAGE: The package name of the app requesting the permission
3047 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3048
3049 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3050 // PACKAGE: The package name of the app the permission was revoked for
3051 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3052
3053 // ACTION: An app requested the permission RECEIVE_MMS
3054 // PACKAGE: The package name of the app requesting the permission
3055 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3056
3057 // ACTION: An app was granted the permission RECEIVE_MMS
3058 // PACKAGE: The package name of the app that was granted the permission
3059 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3060
3061 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3062 // PACKAGE: The package name of the app requesting the permission
3063 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3064
3065 // ACTION: The permission RECEIVE_MMS was revoked for an app
3066 // PACKAGE: The package name of the app the permission was revoked for
3067 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3068
3069 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3070 // PACKAGE: The package name of the app requesting the permission
3071 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3072
3073 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3074 // PACKAGE: The package name of the app that was granted the permission
3075 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3076
3077 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3078 // PACKAGE: The package name of the app requesting the permission
3079 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3080
3081 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3082 // PACKAGE: The package name of the app the permission was revoked for
3083 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3084
3085 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3086 // PACKAGE: The package name of the app requesting the permission
3087 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3088
3089 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3090 // PACKAGE: The package name of the app that was granted the permission
3091 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3092
3093 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3094 // PACKAGE: The package name of the app requesting the permission
3095 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3096
3097 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3098 // PACKAGE: The package name of the app the permission was revoked for
3099 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3100
Mahaverfa6566e2016-11-29 21:08:14 +00003101 // ACTION: Logged when a provisioning session has started
3102 PROVISIONING_SESSION_STARTED = 734;
3103
3104 // ACTION: Logged when a provisioning session has completed
3105 PROVISIONING_SESSION_COMPLETED = 735;
3106
Chad Brubaker811825a2016-12-06 12:31:15 -08003107 // ACTION: An app requested the permission READ_PHONE_NUMBER
3108 // PACKAGE: The package name of the app requesting the permission
3109 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBER = 736;
3110
3111 // ACTION: An app was granted the permission READ_PHONE_NUMBER
3112 // PACKAGE: The package name of the app that was granted the permission
3113 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBER = 737;
3114
3115 // ACTION: An app requested the permission READ_PHONE_NUMBER and the request was denied
3116 // PACKAGE: The package name of the app requesting the permission
3117 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBER = 738;
3118
3119 // ACTION: The permission READ_PHONE_NUMBER was revoked for an app
3120 // PACKAGE: The package name of the app the permission was revoked for
3121 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBER = 739;
3122
Santos Cordon3107d292016-09-20 15:50:35 -07003123 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3124 // SUBTYPE: slider value
3125 // CATEGORY: QUICK_SETTINGS
3126 // OS: 6.0
3127 ACTION_BRIGHTNESS_FOR_VR = 498;
3128
Hugo Benichie1cbf152016-12-08 09:36:52 +09003129 // ACTION: A captive portal was detected during network validation
3130 // CATEGORY: NOTIFICATION
3131 // OS: N-MR2
3132 NOTIFICATION_NETWORK_SIGN_IN = 740;
3133
3134 // ACTION: An unvalidated network without Internet was selected by the user
3135 // CATEGORY: NOTIFICATION
3136 // OS: N-MR2
3137 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3138
3139 // ACTION: A validated network failed revalidation and lost Internet access
3140 // CATEGORY: NOTIFICATION
3141 // OS: N-MR2
3142 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3143
3144 // ACTION: The system default network switched to a different network
3145 // CATEGORY: NOTIFICATION
3146 // OS: N-MR2
3147 NOTIFICATION_NETWORK_SWITCH = 743;
3148
Fan Zhang074c4cb2016-12-21 12:10:33 -08003149 // OPEN: Settings > System
3150 SETTINGS_SYSTEM_CATEGORY = 744;
3151
3152 // OPEN: Settings > Storage
3153 SETTINGS_STORAGE_CATEGORY = 745;
3154
3155 // OPEN: Settings > Network & Internet
3156 SETTINGS_NETWORK_CATEGORY = 746;
3157
3158 // OPEN: Settings > Connected Device
3159 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3160
3161 // OPEN: Settings > App & Notification
3162 SETTINGS_APP_NOTIF_CATEGORY = 748;
3163
3164 // OPEN: Settings > System > Input & Gesture
3165 SETTINGS_INPUT_CATEGORY = 749;
3166
3167 // OPEN: Settings > System > Language & Region
3168 SETTINGS_LANGUAGE_CATEGORY = 750;
3169
3170 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3171 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3172
3173 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3174 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3175
3176 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3177 SETTINGS_GESTURE_PICKUP = 753;
3178
3179 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3180 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3181
3182 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3183 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3184
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003185 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3186 // CATEGORY: Settings
3187 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3188
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003189 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003190 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003191 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3192 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3193 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003194
Salvador Martinezc43ab062016-12-21 11:09:11 -08003195 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3196 // user accepted
3197 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003198
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003199 // Enclosing category for group of APP_TRANSITION_FOO events,
3200 // logged when we execute an app transition.
3201 APP_TRANSITION = 761;
3202
Fan Zhang945deea2017-01-11 16:37:49 -08003203 // ACTION: User leaves Settings search UI without entering any query.
3204 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3205
3206 // ACTION: Clicking on any search result in Settings.
3207 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003208
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003209 // ACTION: Allow Battery optimization for an app
3210 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3211
3212 // ACTION: Deny Battery optimization for an app
3213 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3214
3215 // ACTION: Enable Device Admin app
3216 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3217
3218 // ACTION: Disable Device Admin app
3219 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3220
3221 // ACTION: Allow "Do Not Disturb access" for an app
3222 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3223
3224 // ACTION: Deny "Do Not Disturb access" for an app
3225 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3226
3227 // ACTION: Allow "Draw over other apps" for an app
3228 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3229
3230 // ACTION: Deny "Draw over other apps" for an app
3231 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3232
3233 // ACTION: Allow "VR helper services" for an app
3234 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3235
3236 // ACTION: Deny "VR helper services" for an app
3237 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3238
3239 // ACTION: Allow "Modify system settings" for an app
3240 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3241
3242 // ACTION: Deny "Modify system settings" for an app
3243 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3244
3245 // ACTION: Allow "Notification access" for an app
3246 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3247
3248 // ACTION: Deny "Notification access" for an app
3249 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3250
3251 // ACTION: "Premium SMS access" for an app - "ask user" option
3252 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3253
3254 // ACTION: "Premium SMS access" for an app - "never allow" option
3255 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3256
3257 // ACTION: "Premium SMS access" for an app - "always allow" option
3258 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3259
3260 // ACTION: Allow "Unrestricted data access" for an app
3261 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3262
3263 // ACTION: Deny "Unrestricted data access" for an app
3264 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3265
3266 // ACTION: Allow "Usage access" for an app
3267 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3268
3269 // ACTION: Deny "Usage access" for an app
3270 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3271
Fan Zhangad5dacc2017-01-18 14:18:54 -08003272 // OPEN: Settings > Apps > Default Apps > Default browser
3273 DEFAULT_BROWSER_PICKER = 785;
3274
3275 // OPEN: Settings > Apps > Default Apps > Default emergency app
3276 DEFAULT_EMERGENCY_APP_PICKER = 786;
3277
3278 // OPEN: Settings > Apps > Default Apps > Default home
3279 DEFAULT_HOME_PICKER = 787;
3280
3281 // OPEN: Settings > Apps > Default Apps > Default phone
3282 DEFAULT_PHONE_PICKER = 788;
3283
3284 // OPEN: Settings > Apps > Default Apps > Default sms
3285 DEFAULT_SMS_PICKER = 789;
3286
3287 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3288 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3289
3290 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3291 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3292
Jason Long1b51da62017-01-24 11:35:31 -08003293 // OPEN: Settings > Apps > Default Apps > Default autofill app
3294 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003295
Chris Wren26ca65d2016-11-29 10:43:28 -05003296 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003297 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003298 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3299 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3300 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3301 NOTIFICATION_ID = 796;
3302 NOTIFICATION_TAG = 797;
3303 NOTIFICATION_SHADE_INDEX = 798;
3304 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003305
Anas Karbilaf7648f42016-12-11 00:55:02 +01003306 // OPEN: QS NFC tile shown
3307 // ACTION: QS NFC tile tapped
3308 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003309 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003310
Chris Wren26ca65d2016-11-29 10:43:28 -05003311 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003312 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003313 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3314 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3315 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3316 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3317 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3318 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3319
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003320 // ACTION: "Force stop" action on an app
3321 ACTION_APP_FORCE_STOP = 807;
3322
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003323 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3324 // CATEGORY: SETTINGS
3325 // OS: 8.0
3326 MANAGE_EXTERNAL_SOURCES = 808;
3327
Mahaver6cd47162017-01-23 09:59:33 +00003328 // ACTION: Logged when terms activity finishes.
3329 // TIME: Indicates time taken by terms activity to finish in MS.
3330 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3331
3332 // Indicates number of terms displayed on the terms screen.
3333 PROVISIONING_TERMS_COUNT = 810;
3334
3335 // Indicates number of terms read on the terms screen.
3336 PROVISIONING_TERMS_READ = 811;
3337
Winson Chung59fda9e2017-01-20 16:14:51 -08003338 // Logs that the user has edited the picture-in-picture settings.
3339 // CATEGORY: SETTINGS
3340 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3341
3342 // ACTION: Allow "Enable picture-in-picture on hide" for an app
3343 APP_PICTURE_IN_PICTURE_ON_HIDE_ALLOW = 813;
3344
3345 // ACTION: Deny "Enable picture-in-picture on hide" for an app
3346 APP_PICTURE_IN_PICTURE_ON_HIDE_DENY = 814;
3347
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003348 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3349 // CATEGORY: SETTINGS
3350 // OS: 8.0
3351 TTS_SLIDERS = 815;
3352
Jason Monk524fb402017-01-25 10:33:31 -05003353 // ACTION: Settings -> Display -> Theme
3354 ACTION_THEME = 816;
3355
chchaob8e253a2017-01-25 12:12:09 -08003356 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3357 // ACTION: Select to Speak configuration is chosen
3358 // SUBTYPE: 0 is off, 1 is on
3359 // CATEGORY: SETTINGS
3360 // OS: N
3361 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3362
Anton Philippov95a553e2017-01-27 00:08:24 +00003363 // OPEN: Settings > System > Backup
3364 // CATEGORY: SETTINGS
3365 // OS: O
3366 BACKUP_SETTINGS = 818;
3367
Winson Chung14fbe142016-12-19 16:18:24 -08003368 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003369 // VALUE: true if it was entered while hiding as a result of moving to
3370 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003371 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3372
3373 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3374 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3375 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3376
3377 // ACTION: The activity currently in picture-in-picture was minimized
3378 // VALUE: True if the PiP was minimized, false otherwise
3379 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3380
3381 // ACTION: Picture-in-picture was dismissed via the dismiss button
3382 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3383 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3384
3385 // ACTION: The visibility of the picture-in-picture meny
3386 // VALUE: Whether or not the menu is visible
3387 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3388
3389 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3390 // logged when the aspect ratio changes
3391 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3392
3393 // The current aspect ratio of the PiP, logged when it changes.
3394 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3395
Chris Wren27a52fa2017-02-01 14:21:43 -05003396 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3397 // CATEGORY: GLOBAL_SYSTEM_UI
3398 // OS: O
3399 FIELD_GESTURE_LENGTH = 826;
3400
3401 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3402 // CATEGORY: GLOBAL_SYSTEM_UI
3403 // OS: O
3404 FIELD_GESTURE_VELOCITY = 827;
3405
Christine Franks27fde392017-02-07 10:21:55 -08003406 // OPEN: Carrier demo mode password dialog
3407 CARRIER_DEMO_MODE_PASSWORD = 828;
3408
Fan Zhang70967f32017-02-13 16:02:24 -08003409 // ACTION: Create a Settings shortcut item.
3410 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3411
3412 // ACTION: A tile in Settings information architecture is clicked
3413 ACTION_SETTINGS_TILE_CLICK = 830;
3414
Julia Reynolds520df6e2017-02-13 09:05:10 -05003415 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3416 // updated
3417 // CATEGORY: NOTIFICATION
3418 // OS: O
3419 NOTIFICATION_SNOOZED = 831;
3420
3421 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3422 // OS: O
3423 NOTIFICATION_SNOOZED_CRITERIA = 832;
3424
Fan Zhang65899432017-02-14 13:36:53 -08003425 // FIELD - The context (source) from which an action is performed
3426 FIELD_CONTEXT = 833;
3427
Fan Zhangd95dcb42017-02-14 13:48:09 -08003428 // ACTION: Settings advanced button is expanded
3429 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3430
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003431 // ACTION: Logs the number of times the saved network evaluator was used to
3432 // recommend a wifi network
3433 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3434
3435 // ACTION: Logs the number of times the recommended network evaluator was
3436 // used to recommend a wifi network
3437 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3438
3439 // ACTION: Logs the number of times a recommended network was resulted in a
3440 // successful connection
3441 // VALUE: true if the connection was successful, false if the connection failed
3442 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3443
Daniel Nishic581bfc2017-02-08 10:18:19 -08003444 // OPEN: Settings > Storage > Games
3445 // CATEGORY: SETTINGS
3446 // OS: O
3447 APPLICATIONS_STORAGE_GAMES = 838;
3448
3449 // OPEN: Settings > Storage > Audio and Music
3450 // CATEGORY: SETTINGS
3451 // OS: O
3452 APPLICATIONS_STORAGE_MUSIC = 839;
3453
3454 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3455 // CATEGORY: SETTINGS
3456 // OS: O
3457 STORAGE_FREE_UP_SPACE_NOW = 840;
3458
3459 // ACTION: Settings > Storage > Files to open the File Manager
3460 // CATEGORY: SETTINGS
3461 // OS: O
3462 STORAGE_FILES = 841;
3463
Fan Zhangb1d49222017-02-15 17:12:58 -08003464 // FIELD - Rank of the clicked Settings search result
3465 FIELD_SETTINGS_SERACH_RESULT_RANK = 842;
3466
Fan Zhang7f2cace2017-02-17 12:05:48 -08003467 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3468 DEFAULT_ASSIST_PICKER = 843;
3469
3470 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3471 DEFAULT_VOICE_INPUT_PICKER = 844;
3472
Daniel Nishi4058a842017-02-21 17:11:35 -08003473 // OPEN: Settings > Storage > [Profile]
3474 SETTINGS_STORAGE_PROFILE = 845;
3475
Doris Lingedb84c32017-02-23 10:56:01 -08003476 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3477 // CATEGORY: SETTINGS
3478 // OS: O
3479 ENCRYPTION_AND_CREDENTIAL = 846;
3480
Fan Zhangb66e5422017-02-24 14:37:45 -08003481 // ACTION: Settings > About device > Build number
3482 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3483
3484 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3485 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3486
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003487 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3488 // CATEGORY: SETTINGS
3489 // OS: O
3490 WIFI_NETWORK_DETAILS = 849;
3491
jackqdyuleia2a14342017-02-28 16:20:48 -08003492 // ACTION: Settings > Battery > Menu > Usage Alerts
3493 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3494
3495 // ACTION: Settings > Battery > Menu > Optimization
3496 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3497
3498 // ACTION: Settings > Battery > Menu > Apps Toggle
3499 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3500
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003501 // ACTION: Settings > Any preference is changed
3502 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3503
3504 // FIELD: The name of preference when it is changed in Settings
3505 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3506
3507 // FIELD: The new value of preference when it is changed in Settings
3508 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3509
Julia Reynoldsd373d782017-03-03 13:32:57 -05003510 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3511 // channel updated
3512 // PACKAGE: the package the channel belongs too
3513 // CATEGORY: NOTIFICATION
3514 // OS: O
3515 ACTION_NOTIFICATION_CHANNEL = 856;
3516
3517 // Tagged data for notification channel. String.
3518 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3519
3520 // Tagged data for notification channel. int.
3521 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3522
3523 // OPEN: Notification channel group created.
3524 // PACKAGE: the package the group belongs to
3525 // CATEGORY: NOTIFICATION
3526 // OS: O
3527 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3528
3529 // Tagged data for notification channel group. String.
3530 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3531
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003532 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3533 // CATEGORY: SETTINGS
3534 // OS: O
3535 SETTINGS_NETWORK_SCORER = 861;
3536
Fan Zhang99861312017-03-07 14:32:38 -08003537 // OPEN: Settings > About device > Model > Hardware info dialog
3538 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3539
mariagpuyol0f5512e2017-03-01 12:09:56 -08003540 // ACTION: Checks whether a contact's phone still exists
3541 // Value 0: It doesn't exist anymore
3542 // Value 1: It still exists
3543 // Value 2: A SecurityException was thrown
3544 // CATEGORY: SETTINGS
3545 // OS: N
3546 ACTION_PHONE_EXISTS = 863;
3547
3548 // ACTION: Retrieves a contact from CP2
3549 // Value 0: Contact retrieved without issues
3550 // Value 1: An IllegalArgumentException was thrown
3551 // CATEGORY: SETTINGS
3552 // OS: N
3553 ACTION_GET_CONTACT = 864;
3554
Chris Wren67b3eb92017-03-07 11:31:12 -05003555 // This values should never appear in log outputs - it is reserved for
3556 // internal platform metrics use.
3557 RESERVED_FOR_LOGBUILDER_PID = 865;
3558
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003559 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3560 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3561
3562 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3563 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3564
3565 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3566 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3567
3568 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3569 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3570
3571 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3572 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3573
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003574 // The name of the activity being launched in an app transition event.
3575 APP_TRANSITION_ACTIVITY_NAME = 871;
3576
Fan Zhang082d21c2017-03-13 15:25:54 -07003577 // ACTION: Settings > App detail > Uninstall
3578 ACTION_SETTINGS_UNINSTALL_APP = 872;
3579
3580 // ACTION: Settings > App detail > Uninstall Device admin app
3581 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3582
3583 // ACTION: Settings > App detail > Disable app
3584 ACTION_SETTINGS_DISABLE_APP = 874;
3585
3586 // ACTION: Settings > App detail > Enable app
3587 ACTION_SETTINGS_ENABLE_APP = 875;
3588
3589 // ACTION: Settings > App detail > Clear data
3590 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3591
3592 // ACTION: Settings > App detail > Clear cache
3593 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3594
3595 // ACTION: Clicking on any search result in Settings.
3596 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3597
3598 // FIELD: Settings inline search result name
3599 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3600
3601 // FIELD: Settings inline search result value
3602 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3603
Fan Zhang53797932017-03-13 17:46:24 -07003604 // ACTION: Settings > Search > Click saved queries
3605 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3606
Doris Lingbf8d9de2017-03-15 11:52:50 -07003607 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3608 // CATEGORY: SETTINGS
3609 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3610
Chris Wren26ca65d2016-11-29 10:43:28 -05003611 // ---- End O Constants, all O constants go above this line ----
3612
Adrian Roos159ef7b2016-02-25 11:58:32 -08003613 // Add new aosp constants above this line.
3614 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05003615 }
3616}