blob: 57d25819654fc120299aca417fe1a48c73a6ac6f [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;
Philip P. Moltmann7b771162017-03-03 17:22:57 -080059
60 // The action was successful
61 TYPE_SUCCESS = 10;
62
63 // The action failed
64 TYPE_FAILURE = 11;
Chris Wren5e334f62016-11-14 10:16:21 -050065 }
66
Chris Wren77781d32016-01-11 14:49:26 -050067 // Known visual elements: views or controls.
68 enum View {
Chris Wren7c516842016-03-01 16:44:32 -050069 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -050070 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -050071
72 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -050073 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -050074
75 // OPEN: Settings > Accessibility
76 // CATEGORY: SETTINGS
77 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050078 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -050079
80 // OPEN: Settings > Accessibility > Captions
81 // CATEGORY: SETTINGS
82 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050083 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -050084
85 // OPEN: Settings > Accessibility > [Service]
86 // CATEGORY: SETTINGS
87 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050088 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -050089
90 // OPEN: Settings > Accessibility > Color correction
91 // CATEGORY: SETTINGS
92 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050093 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -050094
95 // OPEN: Settings > Accessibility > Accessibility shortcut
96 // CATEGORY: SETTINGS
97 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050098 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -050099
100 // OPEN: Settings > Accessibility > Magnification gestures
101 // CATEGORY: SETTINGS
102 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500103 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500104
105 // OPEN: Settings > Accounts
106 // CATEGORY: SETTINGS
107 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500108 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500109
110 // OPEN: Settings > Accounts > [Single Account Sync Settings]
111 // CATEGORY: SETTINGS
112 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500113 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500114
115 // OPEN: Settings > Accounts > Add an account
116 // CATEGORY: SETTINGS
117 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500118 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500119
120 // OPEN: Settings > Accounts > [List of accounts when more than one]
121 // CATEGORY: SETTINGS
122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500123 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500124
125 // OPEN: Settings > Cellular network settings > APNs
126 // CATEGORY: SETTINGS
127 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500128 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500129
130 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
131 // CATEGORY: SETTINGS
132 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500133 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500134
135 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500136 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500137
138 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500139 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500140
141 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500142 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500143
144 // OPEN: Settings > Apps > Configure apps > App links > [App]
145 // CATEGORY: SETTINGS
146 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500147 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500148
149 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500150 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500151
152 // OPEN: Settings > Internal storage > Apps storage > [App]
153 // CATEGORY: SETTINGS
154 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500155 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500156
157 // OPEN: Settings > Apps > [App info]
158 // CATEGORY: SETTINGS
159 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500160 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500161
162 // OPEN: Settings > Memory > App usage > [App Memory usage]
163 // CATEGORY: SETTINGS
164 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500165 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500166
167 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500168 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500169
170 // OPEN: Settings > Memory > App usage
171 // CATEGORY: SETTINGS
172 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500173 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500174
175 // OPEN: Settings > Bluetooth
176 // CATEGORY: SETTINGS
177 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500178 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500179
180 // OPEN: Choose Bluetooth device (ex: when sharing)
181 // CATEGORY: SETTINGS
182 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500183 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500184
185 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500186 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500187
188 // OPEN: Settings > Security > Choose screen lock
189 // CATEGORY: SETTINGS
190 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500191 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500192
193 // OPEN: Settings > Security > Choose screen lock > Choose your password
194 // CATEGORY: SETTINGS
195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500196 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500197
198 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
199 // CATEGORY: SETTINGS
200 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500201 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500202
203 // OPEN: Settings > Security > Choose screen lock > Confirm your password
204 // CATEGORY: SETTINGS
205 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500206 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500207
208 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
209 // CATEGORY: SETTINGS
210 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500211 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500212
213 // OPEN: Settings > Security > Encrypt phone
214 // CATEGORY: SETTINGS
215 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500216 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500217
218 // OPEN: Settings > Security > Encrypt phone > Confirm
219 // CATEGORY: SETTINGS
220 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500221 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500222
223 // OPEN: Settings > Search results
224 // CATEGORY: SETTINGS
225 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500226 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500227
228 // OPEN: Settings (Root page)
229 // CATEGORY: SETTINGS
230 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500231 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500232
233 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500234 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500235
236 // OPEN: Settings > Data usage
237 // CATEGORY: SETTINGS
238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500239 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500240
241 // OPEN: Settings > Date & time
242 // CATEGORY: SETTINGS
243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500244 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500245
246 // OPEN: Settings > Developer options
247 // CATEGORY: SETTINGS
248 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500249 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500250
251 // OPEN: Settings > About phone
252 // CATEGORY: SETTINGS
253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500254 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500255
256 // OPEN: Settings > About phone > Status > IMEI information
257 // CATEGORY: SETTINGS
258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500259 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OPEN: Settings > Internal storage
262 // CATEGORY: SETTINGS
263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500264 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OPEN: Settings > About phone > Status > SIM status
267 // CATEGORY: SETTINGS
268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500269 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > About phone > Status
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500277 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500278
279 // OPEN: Settings > Display
280 // CATEGORY: SETTINGS
281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500282 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OPEN: Settings > Display > Daydream
285 // CATEGORY: SETTINGS
286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500287 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OPEN: Settings > Security > Screen lock > Secure start-up
290 // CATEGORY: SETTINGS
291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500292 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500293
294 // OPEN: Settings > Security > Nexus Imprint
295 // CATEGORY: SETTINGS
296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500297 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500298
299 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500300 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500301
302 // OPEN: Settings > Battery > History details
303 // CATEGORY: SETTINGS
304 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500305 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500306
307 // OPEN: Settings > Battery > Battery saver
308 // CATEGORY: SETTINGS
309 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500310 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500311
312 // OPEN: Settings > Battery > [App Use details]
313 // CATEGORY: SETTINGS
314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500315 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500316
317 // OPEN: Settings > Battery
318 // CATEGORY: SETTINGS
319 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500320 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500321
322 // OPEN: Settings > Home
323 // CATEGORY: SETTINGS
324 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500325 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500326
327 // OPEN: Settings > Security > SIM card lock settings
328 // CATEGORY: SETTINGS
329 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500330 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500331
332 // OPEN: Settings > Language & input
333 // CATEGORY: SETTINGS
334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500335 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500336
337 // OPEN: Settings > Language & input > Physical keyboard
338 // CATEGORY: SETTINGS
339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500340 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > Language & input > Spell checker
343 // CATEGORY: SETTINGS
344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500345 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500346
347 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500348 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500349
350 // OPEN: Settings > Language & input > Personal dictionary
351 // CATEGORY: SETTINGS
352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500353 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500354
355 // OPEN: Settings > Language & input > Add word
356 // CATEGORY: SETTINGS
357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500358 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500359
360 // OPEN: Settings > Location
361 // CATEGORY: SETTINGS
362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500363 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500364
365 // OPEN: Settings > Location > Location mode
366 // CATEGORY: SETTINGS
367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500368 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500369
370 // OPEN: Settings > Apps
371 // CATEGORY: SETTINGS
372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500373 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500374
375 // OPEN: Settings > Backup & reset > Factory data reset
376 // CATEGORY: SETTINGS
377 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500378 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500379
380 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
381 // CATEGORY: SETTINGS
382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500383 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500384
385 // OPEN: Settings > Data usage > Network restrictions
386 // CATEGORY: SETTINGS
387 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500388 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500389
390 // OPEN: Settings > More > Android Beam
391 // CATEGORY: SETTINGS
392 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500393 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500394
395 // OPEN: Settings > Tap & pay
396 // CATEGORY: SETTINGS
397 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500398 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500399
400 // OPEN: Settings > Sound & notification
401 // CATEGORY: SETTINGS
402 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500403 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500404
405 // OPEN: Settings > Sound & notification > App notifications > [App]
406 // CATEGORY: SETTINGS
407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500408 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500409
410 // OPEN: Settings > Sound & notification > Other sounds
411 // CATEGORY: SETTINGS
412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500413 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500414
415 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500416 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500417
418 // OPEN: Settings Widget > Notification log
419 // CATEGORY: SETTINGS
420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500421 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500422
423 // OPEN: Settings > Sound & notification > Do not disturb
424 // CATEGORY: SETTINGS
425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500426 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500427
428 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500429 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500430
431 // OPEN: Print job notification > Print job settings
432 // CATEGORY: SETTINGS
433 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500434 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500435
436 // OPEN: Settings > Printing > [Print Service]
437 // CATEGORY: SETTINGS
438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500439 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500440
441 // OPEN: Settings > Printing
442 // CATEGORY: SETTINGS
443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500444 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500445
446 // OPEN: Settings > Backup & reset
447 // CATEGORY: SETTINGS
448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500449 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500450
451 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500452 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500453
454 // OPEN: Settings > Backup & reset > Network settings reset
455 // CATEGORY: SETTINGS
456 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500457 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500458
459 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
460 // CATEGORY: SETTINGS
461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500462 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500463
464 // OPEN: Settings > Developer Options > Running Services
465 // CATEGORY: SETTINGS
466 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500467 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500468
469 // OPEN: Settings > Security > Screen pinning
470 // CATEGORY: SETTINGS
471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500472 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500473
474 // OPEN: Settings > Security
475 // CATEGORY: SETTINGS
476 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500477 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500478
479 // OPEN: Settings > SIM cards
480 // CATEGORY: SETTINGS
481 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500482 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500483
484 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500485 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500486
487 // OPEN: Settings > More > Tethering & portable hotspot
488 // CATEGORY: SETTINGS
489 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500490 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500491
492 // OPEN: Settings > Security > Trust agents
493 // CATEGORY: SETTINGS
494 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500495 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500496
497 // OPEN: Settings > Security > Trusted credentials
498 // CATEGORY: SETTINGS
499 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500500 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500501
502 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
503 // CATEGORY: SETTINGS
504 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500505 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500506
507 // OPEN: Settings > Language & input > Text-to-speech output
508 // CATEGORY: SETTINGS
509 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500510 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500511
512 // OPEN: Settings > Security > Apps with usage access
513 // CATEGORY: SETTINGS
514 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500515 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500516
517 // OPEN: Settings > Users
518 // CATEGORY: SETTINGS
519 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500520 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500521
522 // OPEN: Settings > Users > [Restricted profile app & content access]
523 // CATEGORY: SETTINGS
524 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500525 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500526
527 // OPEN: Settings > Users > [User settings]
528 // CATEGORY: SETTINGS
529 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500530 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500531
532 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500533 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500534
535 // OPEN: Settings > More > VPN
536 // CATEGORY: SETTINGS
537 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500538 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500539
540 // OPEN: Settings > Display > Choose wallpaper from
541 // CATEGORY: SETTINGS
542 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500543 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500544
545 // OPEN: Settings > Display > Cast
546 // CATEGORY: SETTINGS
547 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500548 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500549
550 // OPEN: Settings > Wi-Fi
551 // CATEGORY: SETTINGS
552 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500553 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500554
555 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
556 // CATEGORY: SETTINGS
557 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500558 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500559
560 // OPEN: Settings > More > Wi-Fi Calling
561 // CATEGORY: SETTINGS
562 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500563 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500564
565 // OPEN: Settings > Wi-Fi > Saved networks
566 // CATEGORY: SETTINGS
567 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500568 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500569
570 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500571 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500572
573 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500574 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500575
576 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
577 // CATEGORY: SETTINGS
578 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500579 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500580
581 // OPEN: Settings > More
582 // CATEGORY: SETTINGS
583 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500584 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500585
586 // OPEN: Quick Settings Panel
587 // CATEGORY: QUICK_SETTINGS
588 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500589 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500590
591 // OPEN: QS Airplane mode tile shown
592 // ACTION: QS Airplane mode tile tapped
593 // SUBTYPE: 0 is off, 1 is on
594 // CATEGORY: QUICK_SETTINGS
595 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500596 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500597
598 // OPEN: QS Bluetooth tile shown
599 // ACTION: QS Bluetooth tile tapped
600 // SUBTYPE: 0 is off, 1 is on
601 // CATEGORY: QUICK_SETTINGS
602 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500603 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500604
605 // OPEN: QS Cast tile shown
606 // ACTION: QS Cast tile tapped
607 // CATEGORY: QUICK_SETTINGS
608 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500609 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500610
611 // OPEN: QS Cellular tile shown
612 // ACTION: QS Cellular tile tapped
613 // CATEGORY: QUICK_SETTINGS
614 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500615 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500616
617 // OPEN: QS Color inversion tile shown
618 // ACTION: QS Color inversion tile tapped
619 // SUBTYPE: 0 is off, 1 is on
620 // CATEGORY: QUICK_SETTINGS
621 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500622 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500623
624 // OPEN: QS Cellular tile > Cellular detail panel
625 // CATEGORY: QUICK_SETTINGS
626 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500627 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500628
629 // OPEN: QS Do not disturb tile shown
630 // ACTION: QS Do not disturb tile tapped
631 // SUBTYPE: 0 is off, 1 is on
632 // CATEGORY: QUICK_SETTINGS
633 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500634 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 // OPEN: QS Flashlight tile shown
637 // ACTION: QS Flashlight tile tapped
638 // SUBTYPE: 0 is off, 1 is on
639 // CATEGORY: QUICK_SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: QS Hotspot tile shown
644 // ACTION: QS Hotspot tile tapped
645 // SUBTYPE: 0 is off, 1 is on
646 // CATEGORY: QUICK_SETTINGS
647 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500648 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500649
650 // OPEN: QS 3P tile shown
651 // ACTION: QS 3P tile tapped
652 // CATEGORY: QUICK_SETTINGS
653 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500654 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500655
656 // OPEN: QS Location tile shown
657 // ACTION: QS Location tile tapped
658 // SUBTYPE: 0 is off, 1 is on
659 // CATEGORY: QUICK_SETTINGS
660 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500661 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500662
663 // OPEN: QS Rotation tile shown
664 // ACTION: QS Rotation tile tapped
665 // SUBTYPE: 0 is off, 1 is on
666 // CATEGORY: QUICK_SETTINGS
667 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500668 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500669
670 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500671 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500672
673 // OPEN: QS User list panel
674 // CATEGORY: QUICK_SETTINGS
675 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500676 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500677
678 // OPEN: QS WiFi tile shown
679 // ACTION: QS WiFi tile tapped
680 // SUBTYPE: 0 is off, 1 is on
681 // CATEGORY: QUICK_SETTINGS
682 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500683 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500684
685 // OPEN: Notification Panel (including lockscreen)
686 // CATEGORY: NOTIFICATION
687 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500688 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500689
690 // OPEN: Notification in panel became visible.
691 // PACKAGE: App that posted the notification.
692 // ACTION: Notification is tapped.
693 // PACKAGE: App that posted the notification
694 // DETAIL: Notification is expanded by user.
695 // PACKAGE: App that posted the notification
696 // DISMISS: Notification is dismissed.
697 // PACKAGE: App that posted the notification
698 // SUBTYPE: Dismiss reason from NotificationManagerService.java
699 // CATEGORY: NOTIFICATION
700 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500701 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500702
703 // ACTION: User tapped notification action
704 // PACKAGE: App that posted the notification
705 // SUBTYPE: Index of action on notification
706 // CATEGORY: NOTIFICATION
707 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500708 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500709
710 // OPEN: Settings > Apps > Configure apps > App permissions
711 // CATEGORY: SETTINGS
712 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500713 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500714
715 // OPEN: Settings > Location > Scanning
716 // CATEGORY: SETTINGS
717 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500718 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500719
720 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500721 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500722
723 // OPEN: Settings > Sound & notification > App notifications
724 // CATEGORY: SETTINGS
725 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500726 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500727
728 // ACTION: Settings > Wi-Fi > Overflow > Add Network
729 // CATEGORY: SETTINGS
730 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500731 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500732
733 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700734 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500735 // CATEGORY: SETTINGS
736 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500737 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500738
739 // ACTION: Settings > Wi-Fi > Overflow > Refresh
740 // CATEGORY: SETTINGS
741 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500742 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500743
744 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
745 // CATEGORY: SETTINGS
746 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500747 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700750 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500751 // CATEGORY: SETTINGS
752 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500753 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500754
755 // ACTION: Settings > Wi-Fi > Toggle on
756 // CATEGORY: SETTINGS
757 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500758 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500759
760 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500761 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500762
763 // OPEN: Settings > Sound & notification > DND > Priority only allows
764 // CATEGORY: SETTINGS
765 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500766 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500767
768 // OPEN: Settings > Sound & notification > DND > Automatic rules
769 // CATEGORY: SETTINGS
770 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500771 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500772
773 // OPEN: Settings > Apps > Configure apps > App links
774 // CATEGORY: SETTINGS
775 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500776 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500777
778 // OPEN: Settings > Sound & notification > DND > [Time based rule]
779 // CATEGORY: SETTINGS
780 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500781 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500782
783 // OPEN: Settings > Sound & notification > DND > [External rule]
784 // CATEGORY: SETTINGS
785 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500786 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500787
788 // OPEN: Settings > Sound & notification > DND > [Event rule]
789 // CATEGORY: SETTINGS
790 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500791 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500792
793 // ACTION: App notification settings > Block Notifications
794 // CATEGORY: SETTINGS
795 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500796 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500797
798 // ACTION: Notification shade > Dismiss all button
799 // CATEGORY: NOTIFICATION
800 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500801 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500802
803 // OPEN: QS Do Not Disturb detail panel
804 // CATEGORY: QUICK_SETTINGS
805 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500806 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500807
808 // OPEN: QS Bluetooth detail panel
809 // CATEGORY: QUICK_SETTINGS
810 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500811 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500812
813 // OPEN: QS Cast detail panel
814 // CATEGORY: QUICK_SETTINGS
815 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500816 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500817
818 // OPEN: QS Wi-Fi detail panel
819 // CATEGORY: QUICK_SETTINGS
820 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500821 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500822
823 // ACTION: QS Wi-Fi detail panel > Wi-Fi 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_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // ACTION: QS Bluetooth detail panel > Bluetooth 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_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500834
835 // ACTION: QS Cellular detail panel > Cellular toggle
836 // SUBTYPE: 0 is off, 1 is on
837 // CATEGORY: QUICK_SETTINGS
838 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500839 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // ACTION: QS User list panel > Select different user
842 // CATEGORY: QUICK_SETTINGS
843 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500844 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500845
846 // ACTION: QS Cast detail panel > Select cast device
847 // CATEGORY: QUICK_SETTINGS
848 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500849 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500850
851 // ACTION: QS Cast detail panel > Disconnect cast device
852 // CATEGORY: QUICK_SETTINGS
853 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500854 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500855
856 // ACTION: Settings > Bluetooth > Toggle
857 // SUBTYPE: 0 is off, 1 is on
858 // CATEGORY: SETTINGS
859 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500860 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500861
862 // ACTION: Settings > Bluetooth > Overflow > Refresh
863 // CATEGORY: SETTINGS
864 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500865 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500866
867 // ACTION: Settings > Bluetooth > Overflow > Rename this device
868 // CATEGORY: SETTINGS
869 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500870 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500871
872 // ACTION: Settings > Bluetooth > Overflow > Show received files
873 // CATEGORY: SETTINGS
874 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500875 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500876
877 // ACTION: QS DND details panel > Increase / Decrease exit time
878 // SUBTYPE: true is increase, false is decrease
879 // CATEGORY: QUICK_SETTINGS
880 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500881 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500882
883 // ACTION: QS DND details panel > [Exit condition]
884 // CATEGORY: QUICK_SETTINGS
885 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500886 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500887
888 // ACTION: QS DND details panel > [DND mode]
889 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
890 // CATEGORY: QUICK_SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // ACTION: QS DND detail panel > DND toggle
895 // SUBTYPE: 0 is off, 1 is on
896 // CATEGORY: QUICK_SETTINGS
897 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500898 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500899
900 // ACTION: DND Settings > Priority only allows > Reminder 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_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // ACTION: DND Settings > Priority only allows > Event toggle
907 // SUBTYPE: 0 is off, 1 is on
908 // CATEGORY: SETTINGS
909 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500910 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500911
912 // ACTION: DND Settings > Priority only allows > Messages
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_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -0500917
918 // ACTION: DND Settings > Priority only allows > Calls
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_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
925 // SUBTYPE: 0 is off, 1 is on
926 // CATEGORY: SETTINGS
927 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500928 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -0500929
930 // ACTION: DND Settings > Automatic rules > Add rule
931 // CATEGORY: SETTINGS
932 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500933 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -0500934
935 // ACTION: DND Settings > Automatic rules > Add rule > OK
936 // CATEGORY: SETTINGS
937 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500938 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -0500939
940 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
941 // CATEGORY: SETTINGS
942 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500943 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -0500944
945 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
946 // CATEGORY: SETTINGS
947 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // ACTION: DND Settings > Automatic rules > [Rule] > 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_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -0500955
956 // ACTION: Settings > More > Airplane mode 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_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -0500961
962 // ACTION: Settings > Data usage > Cellular data toggle
963 // SUBTYPE: 0 is off, 1 is on
964 // CATEGORY: SETTINGS
965 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500966 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -0500967
968 // OPEN: Settings > Sound & notification > Notification access
969 // CATEGORY: SETTINGS
970 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500971 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -0500972
973 // OPEN: Settings > Sound & notification > Do Not Disturb access
974 // CATEGORY: SETTINGS
975 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500976 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -0500977
978 // OPEN: Settings > Apps > Configure apps > Default Apps
979 // CATEGORY: SETTINGS
980 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500981 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -0500982
983 // OPEN: Settings > Internal storage > Apps storage
984 // CATEGORY: SETTINGS
985 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500986 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -0500987
988 // OPEN: Settings > Security > Usage access
989 // CATEGORY: SETTINGS
990 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500991 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -0500992
993 // OPEN: Settings > Battery > Battery optimization
994 // CATEGORY: SETTINGS
995 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500996 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -0500997
998 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500999 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001000
1001 // ACTION: Lockscreen > Unlock gesture
1002 // CATEGORY: GLOBAL_SYSTEM_UI
1003 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001004 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001005
1006 // ACTION: Lockscreen > Pull shade open
1007 // CATEGORY: GLOBAL_SYSTEM_UI
1008 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001009 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001010
1011 // ACTION: Lockscreen > Tap on lock, shows hint
1012 // CATEGORY: GLOBAL_SYSTEM_UI
1013 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001014 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001015
1016 // ACTION: Lockscreen > Camera
1017 // CATEGORY: GLOBAL_SYSTEM_UI
1018 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001019 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001020
1021 // ACTION: Lockscreen > Dialer
1022 // CATEGORY: GLOBAL_SYSTEM_UI
1023 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001024 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001025
1026 // ACTION: Lockscreen > Tap on lock, locks phone
1027 // CATEGORY: GLOBAL_SYSTEM_UI
1028 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001029 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001030
1031 // ACTION: Lockscreen > Tap on notification, false touch rejection
1032 // CATEGORY: GLOBAL_SYSTEM_UI
1033 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001034 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001035
1036 // ACTION: Lockscreen > Swipe down to open quick settings
1037 // CATEGORY: GLOBAL_SYSTEM_UI
1038 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001039 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001040
1041 // ACTION: Swipe down to open quick settings when unlocked
1042 // CATEGORY: GLOBAL_SYSTEM_UI
1043 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001044 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001045
1046 // ACTION: Notification shade > Tap to open quick settings
1047 // CATEGORY: GLOBAL_SYSTEM_UI
1048 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001049 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001050
1051 // OPEN: Lockscreen
1052 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1053 // CATEGORY: GLOBAL_SYSTEM_UI
1054 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001055 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001056
1057 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1058 // CATEGORY: GLOBAL_SYSTEM_UI
1059 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001060 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001061
1062 // OPEN: Screen turned on
1063 // SUBTYPE: 2 is user action
1064 // CATEGORY: GLOBAL_SYSTEM_UI
1065 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001066 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001067
1068 // OPEN: Notification caused sound, vibration, and/or LED blink
1069 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1070 // CATEGORY: NOTIFICATION
1071 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001072 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001073
1074 // ACTION: Lockscreen > Emergency Call button
1075 // CATEGORY: GLOBAL_SYSTEM_UI
1076 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001077 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001078
1079 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1080 // CATEGORY: SETTINGS
1081 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001082 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001083
1084 // OPEN: Settings > Memory
1085 // CATEGORY: SETTINGS
1086 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001087 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001088
1089 // ACTION: Settings > Display > When device is rotated
1090 // CATEGORY: SETTINGS
1091 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001092 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // ACTION: Long press on notification to view controls
1095 // CATEGORY: NOTIFICATION
1096 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001097 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // ACTION: Notificatoin controls > Info button
1100 // CATEGORY: NOTIFICATION
1101 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001102 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001103
1104 // ACTION: Notification controls > Settings button
1105 // CATEGORY: NOTIFICATION
1106 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001107 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001108
1109 // OPEN: Volume Dialog (with hardware buttons)
1110 // CATEGORY: GLOBAL_SYSTEM_UI
1111 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001112 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001113
1114 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1115 // CATEGORY: GLOBAL_SYSTEM_UI
1116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001117 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // ACTION: Volume dialog > Adjust volume slider
1120 // SUBTYPE: volume level (0-7)
1121 // CATEGORY: GLOBAL_SYSTEM_UI
1122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001123 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // ACTION: Volume dialog > Select non-active stream
1126 // SUBTYPE: stream (defined in AudioSystem.java)
1127 // CATEGORY: GLOBAL_SYSTEM_UI
1128 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001129 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001130
1131 // ACTION: Adjust volume with hardware key
1132 // SUBTYPE: volume level (0-7)
1133 // CATEGORY: GLOBAL_SYSTEM_UI
1134 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001135 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001136
1137 // ACTION: Volume dialog > Mute a stream by tapping icon
1138 // SUBTYPE: mute is 1, audible is 2
1139 // CATEGORY: GLOBAL_SYSTEM_UI
1140 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001141 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001142
1143 // ACTION: Volume dialog > Change ringer mode by tapping icon
1144 // SUBTYPE: 2 is audible, 3 is vibrate
1145 // CATEGORY: GLOBAL_SYSTEM_UI
1146 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001147 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001148
1149 // ACTION: Chooser shown (share target, file open, etc.)
1150 // CATEGORY: GLOBAL_SYSTEM_UI
1151 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001152 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001153
1154 // ACTION: Chooser > User taps an app 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_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001159
1160 // ACTION: Chooser > User taps a service 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_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001165
1166 // ACTION: Chooser > User taps a standard target
1167 // SUBTYPE: Index of target
1168 // CATEGORY: GLOBAL_SYSTEM_UI
1169 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001170 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // ACTION: QS Brightness Slider (with auto brightness disabled)
1173 // SUBTYPE: slider value
1174 // CATEGORY: QUICK_SETTINGS
1175 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001176 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001177
1178 // ACTION: QS Brightness Slider (with auto brightness enabled)
1179 // SUBTYPE: slider value
1180 // CATEGORY: QUICK_SETTINGS
1181 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001182 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001183
1184 // OPEN: Settings > Display > Brightness Slider
1185 // CATEGORY: SETTINGS
1186 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001187 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001188
Christine Franks47175c32017-03-14 10:21:25 -07001189 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001190 // CATEGORY: SETTINGS
1191 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001192 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001193
1194 // OPEN: Display has entered dream mode
1195 // CATEGORY: GLOBAL_SYSTEM_UI
1196 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001197 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001198
1199 // OPEN: Display has entered ambient notification mode
1200 // CATEGORY: GLOBAL_SYSTEM_UI
1201 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001202 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001203
1204 // OPEN: Overview
1205 // CATEGORY: GLOBAL_SYSTEM_UI
1206 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001207 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001208
1209 // OPEN: Settings > About phone > Legal information
1210 // CATEGORY: SETTINGS
1211 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001212 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001213
1214 // OPEN: Settings > Search > Perform search
1215 // CATEGORY: SETTINGS
1216 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001217 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001218
1219 // OPEN: Settings > System UI Tuner
1220 // CATEGORY: SETTINGS
1221 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001222 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001223
1224 // OPEN: Settings > System UI Tuner > Quick Settings
1225 // CATEGORY: SETTINGS
1226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001227 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001228
1229 // OPEN: Settings > System UI Tuner > Demo mode
1230 // CATEGORY: SETTINGS
1231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001232 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001233
1234 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1235 // PACKAGE: Tile
1236 // CATEGORY: SETTINGS
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1241 // PACKAGE: Tile
1242 // CATEGORY: SETTINGS
1243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001244 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001245
1246 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1247 // PACKAGE: Tile
1248 // CATEGORY: SETTINGS
1249 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001250 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001251
1252 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1253 // PACKAGE: Icon
1254 // CATEGORY: SETTINGS
1255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001256 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001257
1258 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1259 // PACKAGE: Icon
1260 // CATEGORY: SETTINGS
1261 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001262 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001263
1264 // ACTION: Settings > System UI Tuner > Demo mode > Enable 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_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1271 // SUBTYPE: false is disabled, true is enabled
1272 // CATEGORY: SETTINGS
1273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001274 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001275
1276 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1277 // SUBTYPE: 0 is disabled, 1 is enabled
1278 // CATEGORY: SETTINGS
1279 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001280 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001281
1282 // OPEN: Settings > Developer options > Inactive apps
1283 // CATEGORY: SETTINGS
1284 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001285 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001286
1287 // ACTION: Long press home to bring up assistant
1288 // CATEGORY: GLOBAL_SYSTEM_UI
1289 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001290 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001291
1292 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1293 // CATEGORY: SETTINGS
1294 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001295 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001296
1297 // OPEN: Fingerprint Enroll > Find Sensor
1298 // CATEGORY: SETTINGS
1299 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001300 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001301
1302 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1303 // CATEGORY: SETTINGS
1304 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001305 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001306
1307 // OPEN: Fingerprint Enroll introduction
1308 // CATEGORY: SETTINGS
1309 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001310 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001311
1312 // OPEN: Fingerprint Enroll onboarding
1313 // CATEGORY: SETTINGS
1314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001315 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001316
1317 // OPEN: Fingerprint Enroll > Let's Start!
1318 // CATEGORY: SETTINGS
1319 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001320 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001321
1322 // OPEN: Fingerprint Enroll SUW > Let's Start!
1323 // CATEGORY: SETTINGS
1324 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001325 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001326
1327 // OPEN: Fingerprint Enroll SUW > Find Sensor
1328 // CATEGORY: SETTINGS
1329 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001330 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001331
1332 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1333 // CATEGORY: SETTINGS
1334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001335 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001336
1337 // OPEN: Fingerprint Enroll SUW introduction
1338 // CATEGORY: SETTINGS
1339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001340 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001341
1342 // OPEN: Fingerprint Enroll SUW onboarding
1343 // CATEGORY: SETTINGS
1344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001345 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001346
1347 // ACTION: Add fingerprint > Enroll fingerprint
1348 // CATEGORY: SETTINGS
1349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001350 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001351
1352 // ACTION: Authenticate using fingerprint
1353 // CATEGORY: SETTINGS
1354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001355 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001356
1357 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1358 // CATEGORY: SETTINGS
1359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001360 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001361
1362 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1363 // CATEGORY: SETTINGS
1364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001365 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001366
1367 // ACTION: Double tap camera shortcut
1368 // CATEGORY: GLOBAL_SYSTEM_UI
1369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001370 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001371
1372 // ACTION: Double twist camera shortcut
1373 // CATEGORY: GLOBAL_SYSTEM_UI
1374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001375 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001376
1377 // OPEN: QS Work Mode tile shown
1378 // ACTION: QS Work Mode tile tapped
1379 // SUBTYPE: 0 is off, 1 is on
1380 // CATEGORY: QUICK_SETTINGS
1381 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001382 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001383
1384 // OPEN: Settings > Developer Options > Background Check
1385 // CATEGORY: SETTINGS
1386 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001387 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001388
1389 // OPEN: QS Lock tile shown
1390 // ACTION: QS Lock tile tapped
1391 // SUBTYPE: 0 is off, 1 is on
1392 // CATEGORY: QUICK_SETTINGS
1393 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001394 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001395
1396 // OPEN: QS User Tile shown
1397 // CATEGORY: QUICK_SETTINGS
1398 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001399 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001400
1401 // OPEN: QS Battery tile shown
1402 // CATEGORY: QUICK_SETTINGS
1403 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001404 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001405
1406 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1407 // CATEGORY: SETTINGS
1408 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001409 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001410
1411 // ACTION: Visual interruptions > No screen interuptions toggle
1412 // SUBTYPE: 0 is off, 1 is on
1413 // CATEGORY: SETTINGS
1414 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001415 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001416
1417 // ACTION: Visual interruptions > No notification light toggle
1418 // SUBTYPE: 0 is off, 1 is on
1419 // CATEGORY: SETTINGS
1420 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001421 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: Settings > Notifications > [App] > Topic Notifications
1424 // CATEGORY: SETTINGS
1425 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001426 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1429 // PACKAGE: Selected SMS app
1430 // CATEGORY: SETTINGS
1431 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001432 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001433
1434 // OPEN: QS Color modification tile shown
1435 // ACTION: QS Color modification tile tapped
1436 // SUBTYPE: 0 is off, 1 is on
1437 // CATEGORY: QUICK_SETTINGS
1438 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001439 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001440
1441 // OPEN: QS Custom tile shown
1442 // ACTION: QS Work Mode tile tapped
1443 // CATEGORY: QUICK_SETTINGS
1444 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001445 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001446
1447 // ACTION: Visual interruptions > Never turn off the screen toggle
1448 // SUBTYPE: 0 is off, 1 is on
1449 // CATEGORY: SETTINGS
1450 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001451 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001452
Chris Wren7c516842016-03-01 16:44:32 -05001453 // ACTION: Overview > Long-press task, drag to enter split-screen
1454 // CATEGORY: GLOBAL_SYSTEM_UI
1455 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001456 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1457
Chris Wren7c516842016-03-01 16:44:32 -05001458 // ACTION: In App > Long-press Overview button to enter split-screen
1459 // CATEGORY: GLOBAL_SYSTEM_UI
1460 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001461 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1462
Chris Wren7c516842016-03-01 16:44:32 -05001463 // ACTION: In App > Swipe Overview button to enter split-screen
1464 // CATEGORY: GLOBAL_SYSTEM_UI
1465 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001466 ACTION_WINDOW_DOCK_SWIPE = 272;
1467
Chris Wren7c516842016-03-01 16:44:32 -05001468 // ACTION: Launch profile-specific app > Confirm credentials
1469 // CATEGORY: GLOBAL_SYSTEM_UI
1470 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001471 PROFILE_CHALLENGE = 273;
1472
Chris Wren7c516842016-03-01 16:44:32 -05001473 // OPEN: QS Battery detail panel
1474 // CATEGORY: GLOBAL_SYSTEM_UI
1475 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001476 QS_BATTERY_DETAIL = 274;
1477
Chris Wren7c516842016-03-01 16:44:32 -05001478 // OPEN: Overview > History
1479 // CATEGORY: GLOBAL_SYSTEM_UI
1480 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001481 OVERVIEW_HISTORY = 275;
1482
Chris Wren7c516842016-03-01 16:44:32 -05001483 // ACTION: Overview > Page by tapping Overview button
1484 // CATEGORY: GLOBAL_SYSTEM_UI
1485 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001486 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001487
Chris Wren7c516842016-03-01 16:44:32 -05001488 // ACTION: Overview > Select app
1489 // CATEGORY: GLOBAL_SYSTEM_UI
1490 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001491 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001492
Chris Wren7c516842016-03-01 16:44:32 -05001493 // ACTION: View emergency info
1494 // CATEGORY: GLOBAL_SYSTEM_UI
1495 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001496 ACTION_VIEW_EMERGENCY_INFO = 278;
1497
Chris Wren7c516842016-03-01 16:44:32 -05001498 // ACTION: Edit emergency info activity
1499 // CATEGORY: SETTINGS
1500 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001501 ACTION_EDIT_EMERGENCY_INFO = 279;
1502
Chris Wren7c516842016-03-01 16:44:32 -05001503 // ACTION: Edit emergency info field
1504 // CATEGORY: SETTINGS
1505 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001506 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1507
Chris Wren7c516842016-03-01 16:44:32 -05001508 // ACTION: Add emergency contact
1509 // CATEGORY: SETTINGS
1510 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001511 ACTION_ADD_EMERGENCY_CONTACT = 281;
1512
Chris Wren7c516842016-03-01 16:44:32 -05001513 // ACTION: Delete emergency contact
1514 // CATEGORY: SETTINGS
1515 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001516 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1517
Chris Wren7c516842016-03-01 16:44:32 -05001518 // ACTION: Call emergency contact
1519 // CATEGORY: SETTINGS
1520 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001521 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001522
Chris Wren7c516842016-03-01 16:44:32 -05001523 // OPEN: QS Data Saver tile shown
1524 // ACTION: QS Data Saver tile tapped
1525 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001526 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001527
Robin Lee8c1306e2016-02-01 11:37:02 +00001528 // OPEN: Settings > Security > User credentials
1529 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001530 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001531 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001532
Chris Wren7c516842016-03-01 16:44:32 -05001533 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1534 // CATEGORY: GLOBAL_SYSTEM_UI
1535 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001536 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001537
1538 // Logged when the user scrolls through overview manually
1539 OVERVIEW_SCROLL = 287;
1540
1541 // Logged when the overview times out automatically selecting an app
1542 OVERVIEW_SELECT_TIMEOUT = 288;
1543
1544 // Logged when a user dismisses a task in overview
1545 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001546
1547 // Logged when the user modifying the notification importance slider.
1548 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1549
1550 // Logged when the user saves a modification to notification importance. Negative numbers
1551 // indicate the user lowered the importance; positive means they increased it.
1552 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001553
Chris Wren7c516842016-03-01 16:44:32 -05001554 // ACTION: Long-press power button, then tap "Take bug report" option.
1555 // CATEGORY: GLOBAL_SYSTEM_UI
1556 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001557 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1558
Chris Wren7c516842016-03-01 16:44:32 -05001559 // ACTION: Long-press power button, then long-press "Take bug report" option.
1560 // CATEGORY: GLOBAL_SYSTEM_UI
1561 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001562 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1563
Chris Wren7c516842016-03-01 16:44:32 -05001564 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1565 // CATEGORY: SETTINGS
1566 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001567 // Interactive bug report initiated from Settings.
1568 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1569
Chris Wren7c516842016-03-01 16:44:32 -05001570 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1571 // CATEGORY: SETTINGS
1572 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001573 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001574 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1575
Chris Wren7c516842016-03-01 16:44:32 -05001576 // ACTION: User tapped notification action to cancel a bug report
1577 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001578 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001579 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1580
Chris Wren7c516842016-03-01 16:44:32 -05001581 // ACTION: User tapped notification action to launch bug report details screen
1582 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001583 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001584 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1585
Chris Wren7c516842016-03-01 16:44:32 -05001586 // ACTION: User tapped notification action to take adition screenshot on bug report
1587 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001588 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001589 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1590
Chris Wren7c516842016-03-01 16:44:32 -05001591 // ACTION: User tapped notification to share bug report
1592 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001593 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001594 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1595
Chris Wren7c516842016-03-01 16:44:32 -05001596 // ACTION: User changed bug report name using the details screen
1597 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001598 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001599 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1600
Chris Wren7c516842016-03-01 16:44:32 -05001601 // ACTION: User changed bug report title using the details screen
1602 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001603 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001604 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1605
Chris Wren7c516842016-03-01 16:44:32 -05001606 // ACTION: User changed bug report description using the details screen
1607 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001608 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001609 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1610
Chris Wren7c516842016-03-01 16:44:32 -05001611 // ACTION: User tapped Save in the bug report details screen.
1612 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001613 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001614 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1615
Chris Wren7c516842016-03-01 16:44:32 -05001616 // ACTION: User tapped Cancel in the bug report details screen.
1617 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001618 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001619 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001620
1621 // Tuner: Open/close calibrate dialog.
1622 TUNER_CALIBRATE_DISPLAY = 305;
1623
1624 // Tuner: Open/close color and appearance.
1625 TUNER_COLOR_AND_APPEARANCE = 306;
1626
1627 // Tuner: Apply calibrate dialog.
1628 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1629
1630 // Tuner: Open/close night mode.
1631 TUNER_NIGHT_MODE = 308;
1632
1633 // Tuner: Change night mode.
1634 ACTION_TUNER_NIGHT_MODE = 309;
1635
1636 // Tuner: Change night mode auto.
1637 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1638
1639 // Tuner: Change night mode adjust dark theme.
1640 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1641
1642 // Tuner: Change night mode adjust tint.
1643 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1644
1645 // Tuner: Change night mode adjust brightness.
1646 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1647
1648 // Tuner: Change do not disturb in volume panel.
1649 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1650
1651 // Tuner: Change do not disturb volume buttons shortcut.
1652 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001653
1654 // Logs the action the user takes when an app crashed.
1655 ACTION_APP_CRASH = 316;
1656
1657 // Logs the action the user takes when an app ANR'd.
1658 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001659
1660 // Logged when a user double taps the overview button to launch the previous task
1661 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001662
1663 // Logged when we execute an app transition. This indicates the total delay from startActivity
1664 // until the app transition is starting to animate, in milliseconds.
1665 APP_TRANSITION_DELAY_MS = 319;
1666
1667 // Logged when we execute an app transition. This indicates the reason why the transition
1668 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1669 APP_TRANSITION_REASON = 320;
1670
1671 // Logged when we execute an app transition and we drew a starting window. This indicates the
1672 // delay from startActivity until the starting window was drawn.
1673 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1674
1675 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1676 // the delay from startActivity until all windows have been drawn.
1677 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1678
1679 // Logged when we execute an app transition. This indicates the component name of the current
1680 // transition.
1681 APP_TRANSITION_COMPONENT_NAME = 323;
1682
1683 // Logged when we execute an app transition. This indicates whether the process was already
1684 // running.
1685 APP_TRANSITION_PROCESS_RUNNING = 324;
1686
1687 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1688 // the transition was executed.
1689 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001690
Chris Wren38f98812016-07-13 14:28:40 -04001691 // ACTION: app requested access to a scoped directory, user granted 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_GRANTED_BY_FOLDER = 326;
1696
Chris Wren38f98812016-07-13 14:28:40 -04001697 // ACTION: app requested access to a scoped directory, user denied it.
1698 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1699 // CATEGORY: GLOBAL_SYSTEM_UI
1700 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001701 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1702
Chris Wren38f98812016-07-13 14:28:40 -04001703 // ACTION: app requested access to a scoped directory, user granted 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_GRANTED_BY_PACKAGE = 328;
1708
Chris Wren38f98812016-07-13 14:28:40 -04001709 // ACTION: app requested access to a scoped directory, user denied it.
1710 // PACKAGE: app that requested access.
1711 // CATEGORY: GLOBAL_SYSTEM_UI
1712 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001713 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1714
Chris Wren38f98812016-07-13 14:28:40 -04001715 // ACTION: app requested access to a directory user has already been granted
1716 // access before.
1717 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1718 // CATEGORY: GLOBAL_SYSTEM_UI
1719 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001720 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1721
Chris Wren38f98812016-07-13 14:28:40 -04001722 // ACTION: app requested access to a directory user has already been granted
1723 // access before.
1724 // PACKAGE: app that requested access.
1725 // CATEGORY: GLOBAL_SYSTEM_UI
1726 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001727 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001728
Chris Wren38f98812016-07-13 14:28:40 -04001729 // ACTION: Logged when the user slides a notification and reveals the gear
1730 // beneath it.
1731 // CATEGORY: NOTIFICATION
1732 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001733 ACTION_REVEAL_GEAR = 332;
1734
Chris Wren38f98812016-07-13 14:28:40 -04001735 // ACTION: Logged when the user taps on the gear beneath a notification.
1736 // CATEGORY: NOTIFICATION
1737 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001738 ACTION_TOUCH_GEAR = 333;
1739
Ruben Brunke24b9a62016-02-16 21:38:24 -08001740 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001741 // CATEGORY: SETTINGS
1742 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001743 VR_MANAGE_LISTENERS = 334;
1744
Jason Monk6f5354d2016-03-08 14:18:08 -05001745 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001746 // CATEGORY: SETTINGS
1747 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001748 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001749
Jason Monk6f5354d2016-03-08 14:18:08 -05001750 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001751 // CATEGORY: SETTINGS
1752 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001753 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001754
Jason Monk6f5354d2016-03-08 14:18:08 -05001755 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001756 // CATEGORY: SETTINGS
1757 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001758 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001759
Jason Monk6f5354d2016-03-08 14:18:08 -05001760 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001761 // CATEGORY: SETTINGS
1762 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001763 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001764
Jason Monk6f5354d2016-03-08 14:18:08 -05001765 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001766 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001767 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001768
Jason Monk6f5354d2016-03-08 14:18:08 -05001769 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001770 // CATEGORY: SETTINGS
1771 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001772 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001773
Jason Monk6f5354d2016-03-08 14:18:08 -05001774 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001775 // CATEGORY: SETTINGS
1776 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001777 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001778
Jason Monk6f5354d2016-03-08 14:18:08 -05001779 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001780 // CATEGORY: SETTINGS
1781 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001782 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001783
Jason Monk6f5354d2016-03-08 14:18:08 -05001784 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001785 // CATEGORY: SETTINGS
1786 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001787 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001788
Jason Monk6f5354d2016-03-08 14:18:08 -05001789 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001790 // CATEGORY: SETTINGS
1791 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001792 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001793
Jason Monk6f5354d2016-03-08 14:18:08 -05001794 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001795 // CATEGORY: SETTINGS
1796 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001797 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001798
Jason Monk6f5354d2016-03-08 14:18:08 -05001799 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001800 // CATEGORY: SETTINGS
1801 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001802 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001803
Jason Monk6f5354d2016-03-08 14:18:08 -05001804 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001805 // CATEGORY: SETTINGS
1806 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001807 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001808
Jason Monk6f5354d2016-03-08 14:18:08 -05001809 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001810 // CATEGORY: SETTINGS
1811 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001812 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001813
Jason Monk6f5354d2016-03-08 14:18:08 -05001814 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001815 // CATEGORY: SETTINGS
1816 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001817 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1818
1819 // Used for generic logging of Settings Preference Persistence, should not be used
1820 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001821 // CATEGORY: SETTINGS
1822 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001823 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001824
Jason Monk6f5354d2016-03-08 14:18:08 -05001825 // Settings -> Apps -> Gear -> Special access
1826 SPECIAL_ACCESS = 351;
1827
Muyuan Lia2129992016-03-03 18:30:39 -08001828 // Logs that the user docks window via shortcut key.
1829 WINDOW_DOCK_SHORTCUTS = 352;
1830
Felipe Lemeadccb992016-03-09 17:40:49 -08001831 // User already denied access to the request folder; action takes an integer
1832 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001833 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001834 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1835
1836 // User already denied access to the request folder; action pass package name
1837 // of calling package.
1838 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1839
1840 // User denied access to the request folder and checked 'Do not ask again';
1841 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001842 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001843 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1844
1845 // User denied access to the request folder and checked 'Do not ask again';
1846 // action pass package name of calling package.
1847 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1848
Winson3b6ba1a2016-03-22 15:37:54 -07001849 // Logged when a user dismisses all task in overview
1850 OVERVIEW_DISMISS_ALL = 357;
1851
Jason Monk96defbe2016-03-29 16:51:03 -04001852 // Quick Settings -> Edit
1853 QS_EDIT = 358;
1854
1855 // Quick Settings -> Edit -> Overflow -> Reset
1856 ACTION_QS_EDIT_RESET = 359;
1857
1858 // QS -> Edit - Drag a tile out of 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_REMOVE_SPEC = 360;
1862 ACTION_QS_EDIT_REMOVE = 361;
1863
1864 // QS -> Edit - Drag a tile into 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_ADD_SPEC = 362;
1868 ACTION_QS_EDIT_ADD = 363;
1869
1870 // QS -> Edit - Drag a tile within the active tiles.
1871 // The _SPEC contains either the spec of the tile or
1872 // the package of the 3rd party app in the PKG field.
1873 ACTION_QS_EDIT_MOVE_SPEC = 364;
1874 ACTION_QS_EDIT_MOVE = 365;
1875
1876 // Long-press on a QS tile. Tile spec in package field.
1877 ACTION_QS_LONG_PRESS = 366;
1878
Anna Galuszadad131f2016-03-22 13:49:02 -07001879 // OPEN: SUW Welcome Screen -> Vision Settings
1880 // CATEGORY: SETTINGS
1881 // OS: N
1882 SUW_ACCESSIBILITY = 367;
1883
1884 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture
1885 // ACTION: New magnification gesture configuration is chosen
1886 // SUBTYPE: 0 is off, 1 is on
1887 // CATEGORY: SETTINGS
1888 // OS: N
1889 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1890
1891 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1892 // ACTION: New font size is chosen
1893 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1894 // CATEGORY: SETTINGS
1895 // OS: N
1896 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1897
1898 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1899 // ACTION: New display size is chosen
1900 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1901 // CATEGORY: SETTINGS
1902 // OS: N
1903 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1904
1905 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1906 // ACTION: New screen reader configuration is chosen
1907 // SUBTYPE: 0 is off, 1 is on
1908 // CATEGORY: SETTINGS
1909 // OS: N
1910 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
1911
Jason Monkc3620392016-03-30 15:46:03 -04001912 // ------- Begin N Settings conditionals -----
1913 // Conditionals are the green bars at the top of the settings dashboard
1914 // All conditionals will have visible/hide events onResume/onPause
1915 // but they will also be used as extra ints in the
1916 // dismiss/expand/collapse/click/button events
1917
1918 // swipe away conditional
1919 ACTION_SETTINGS_CONDITION_DISMISS = 372;
1920
1921 // click on collapsed conditional or clicks expand button
1922 ACTION_SETTINGS_CONDITION_EXPAND = 373;
1923
1924 // click collapse button on expanded conditional
1925 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
1926
1927 // click main area of expanded conditional
1928 ACTION_SETTINGS_CONDITION_CLICK = 375;
1929
1930 // click a direct button on expanded conditional
1931 ACTION_SETTINGS_CONDITION_BUTTON = 376;
1932
1933 // Airplane mode on
1934 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
1935 // AKA Data saver on
1936 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
1937 // Battery saver on
1938 SETTINGS_CONDITION_BATTERY_SAVER = 379;
1939 // Cellular data off
1940 SETTINGS_CONDITION_CELLULAR_DATA = 380;
1941 // Do not disturb on
1942 SETTINGS_CONDITION_DND = 381;
1943 // Hotspot on
1944 SETTINGS_CONDITION_HOTSPOT = 382;
1945 // Work profile off
1946 SETTINGS_CONDITION_WORK_MODE = 383;
1947
Jason Monk1b5d87b2016-03-30 16:03:15 -04001948 // ------- Begin N Settings suggestions -----
1949 // Since suggestions come from system apps, suggestions will
1950 // have generic constants and the package providing the suggestion
1951 // will be put in the package field. For suggestions in the Settings
1952 // package, the class name will be filled in instead (since settings
1953 // provides several suggetions).
1954
1955 // Settings shown/hidden on main settings dashboard.
1956 // These are actually visibility events, but visible/hidden doesn't
1957 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04001958 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
1959 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001960
1961 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04001962 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001963
1964 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04001965 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001966
Jason Monk397df682016-03-28 15:48:34 -04001967 // Settings > Apps > Gear > Special Access > Premium SMS access
1968 PREMIUM_SMS_ACCESS = 388;
1969
Jorim Jaggi29379ec2016-04-11 23:43:42 -07001970 // Logged when the user resizes the docked stack. Arguments:
1971 // 0: Split 50:50
1972 // 1: Docked smaller
1973 // 2: Docked larger
1974 ACTION_WINDOW_DOCK_RESIZE = 389;
1975
1976 // User exits split-screen by dragging the divider to the side of the screen. Arguments
1977 // 0: Docked gets maximized
1978 // 1: Fullscreen gets maximized
1979 ACTION_WINDOW_UNDOCK_MAX = 390;
1980
1981 // User tried to dock an unresizable app.
1982 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
1983
Julia Reynolds4d920ff2016-04-06 20:31:05 -04001984 // System UI Tuner > Other > Power notification controls
1985 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
1986
1987 // System UI Tuner > Other > Power notification controls > Toggle on/off
1988 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
1989
Chris Wren38f98812016-07-13 14:28:40 -04001990 // Action: user enable / disabled data saver using Settings
1991 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
1992 // VALUE: 1 for enabled, 0 for disabled
1993 // CATEGORY: SETTINGS
1994 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001995 ACTION_DATA_SAVER_MODE = 394;
1996
Chris Wren38f98812016-07-13 14:28:40 -04001997 // User whitelisted an app for Data Saver mode; action pass package name of app
1998 // Action: user enable / disabled data saver using Settings
1999 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2000 // or
2001 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2002 // VALUE: package name of APP
2003 // CATEGORY: SETTINGS
2004 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002005 ACTION_DATA_SAVER_WHITELIST = 395;
2006
Chris Wren38f98812016-07-13 14:28:40 -04002007 // User blacklisted an app for Data Saver mode; action pass package name of app
2008 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2009 // VALUE: package name of APP
2010 // CATEGORY: SETTINGS
2011 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002012 ACTION_DATA_SAVER_BLACKLIST = 396;
2013
Adrian Roosceeb04c2016-04-25 14:00:54 -07002014 // User opened a remote input view associated with a notification. Passes package name of app
2015 // that posted the notification. Note that this can also happen transiently during notification
2016 // reinflation.
2017 ACTION_REMOTE_INPUT_OPEN = 397;
2018
2019 // User attempt to send data through a remote input view associated with a notification.
2020 // Passes package name of app that posted the notification. May succeed or fail.
2021 ACTION_REMOTE_INPUT_SEND = 398;
2022
2023 // Failed attempt to send data through a remote input view associated with a
2024 // notification. Passes package name of app that posted the notification.
2025 ACTION_REMOTE_INPUT_FAIL = 399;
2026
2027 // User closed a remote input view associated with a notification. Passes package name of app
2028 // that posted the notification. Note that this can also happen transiently during notification
2029 // reinflation.
2030 ACTION_REMOTE_INPUT_CLOSE = 400;
2031
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002032 // OPEN: Settings > Accounts > Work profile settings
2033 // CATEGORY: SETTINGS
2034 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2035
Jason Monk25118d12016-05-10 13:25:50 -04002036 // Settings -> Dev options -> Convert to file encryption
2037 CONVERT_FBE = 402;
2038
2039 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2040 CONVERT_FBE_CONFIRM = 403;
2041
2042 // Settings -> Dev options -> Running services
2043 RUNNING_SERVICES = 404;
2044
Jason Monka1f697f2016-05-06 15:09:44 -04002045 // The dialog shown by 3P intent to change current webview implementation.
2046 WEBVIEW_IMPLEMENTATION = 405;
2047
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002048 // Settings launched from expanded quick settings.
2049 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2050
Chris Wren698b1702016-05-23 11:16:32 -04002051 // Notification expansion state toggled by the expand affordance.
2052 ACTION_NOTIFICATION_EXPANDER = 407;
2053
2054 // Notification group expansion state toggled by the expand affordance.
2055 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2056
Chris Wren7ee84182016-05-27 13:34:02 -04002057
Chris Wren6abeeb92016-05-26 14:44:38 -04002058 // Notification expansion state toggled by the expand gesture.
2059 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2060
2061 // Notification group expansion state toggled by the expand gesture.
2062 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2063
Bhavik Singh3451da42016-06-01 18:25:59 -07002064 // User performs gesture that activates the ambient display
2065 // 1: Gesture performed is Nudge
2066 // 2: Gesture performed is Pickup
2067 // 4: Gesture performed is Double Tap
2068 ACTION_AMBIENT_GESTURE = 411;
2069
Jason Monk9fa5f822016-05-11 10:26:31 -04002070 // ---- End N Constants, all N constants go above this line ----
2071
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002072 // ------- Begin N App Disambig Shade -----
2073 // Application disambig shade opened or closed with a featured app.
2074 // These are actually visibility events, but visible/hidden doesn't
2075 // take a package, so these are being logged as actions.
2076 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002077 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2078 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002079
2080 // Application disambig shade opened or closed without a featured app.
2081 // These are actually visibility events, but visible/hidden doesn't
2082 // take a package, so these are being logged as actions.
2083 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002084 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2085 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002086
2087 // User opens in an app by pressing “Always” in the application disambig shade.
2088 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002089 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002090
2091 // User opens in an app by pressing “Just Once” in the application disambig shade.
2092 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002093 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002094
2095 // User opens in an app by tapping on its name in the application disambig shade.
2096 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002097 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002098
Daniel Nishi010aa492016-05-11 09:42:24 -07002099 // OPEN: Settings > Internal storage > Storage manager
2100 // CATEGORY: SETTINGS
2101 STORAGE_MANAGER_SETTINGS = 458;
2102
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002103 // OPEN: Settings -> Gestures
2104 // CATEGORY: SETTINGS
2105 SETTINGS_GESTURES = 459;
2106
Daniel Nishi597e67f2016-05-18 13:56:13 -07002107 // ------ Begin Deletion Helper ------
2108 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2109 // SUBTYPE: false is off, true is on
2110 // CATEGORY: SETTINGS
2111 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002112
Daniel Nishi597e67f2016-05-18 13:56:13 -07002113 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2114 // SUBTYPE: false is off, true is on
2115 // CATEGORY: SETTINGS
2116 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2117
2118 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2119 // CATEGORY: SETTINGS
2120 // PACKAGE: Unchecked app
2121 ACTION_DELETION_SELECTION_APP_ON = 462;
2122
2123 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2124 // CATEGORY: SETTINGS
2125 // PACKAGE: Checked app
2126 ACTION_DELETION_SELECTION_APP_OFF = 463;
2127
2128 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2129 // SUBTYPE: false is expanded, true is collapsed
2130 // CATEGORY: SETTINGS
2131 ACTION_DELETION_APPS_COLLAPSED = 464;
2132
2133 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2134 // SUBTYPE: false is off, true is on
2135 // CATEGORY: SETTINGS
2136 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2137
2138 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2139 // SUBTYPE: false is expanded, true is collapsed
2140 // CATEGORY: SETTINGS
2141 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2142
2143 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2144 // CATEGORY: SETTINGS
2145 ACTION_DELETION_HELPER_CLEAR = 467;
2146
2147 // ACTION: Settings > Storage > Free Up Space > Cancel
2148 // CATEGORY: SETTINGS
2149 ACTION_DELETION_HELPER_CANCEL = 468;
2150
2151 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2152 // CATEGORY: SETTINGS
2153 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2154
2155 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2156 // CATEGORY: SETTINGS
2157 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2158
2159 // Deletion helper encountered an error during package deletion.
2160 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2161
2162 // Deletion helper encountered an error during downloads folder deletion.
2163 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2164
2165 // Deletion helper encountered an error during photo and video deletion.
2166 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2167
Fan Zhang5e956e82016-05-06 10:51:47 -07002168 // OPEN: Settings (root page if there are multiple tabs)
2169 // CATEGORY: SETTINGS
2170 DASHBOARD_CONTAINER = 474;
2171
2172 // OPEN: Settings -> SUPPORT TAB
2173 // CATEGORY: SETTINGS
2174 SUPPORT_FRAGMENT = 475;
2175
2176 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002177 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002178 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002179
2180 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002181 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002182 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2183
Fan Zhanga1985502016-06-16 16:48:38 -07002184 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002185 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002186 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2187
2188 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002189 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002190 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2191
2192 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002193 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002194 ACTION_SUPPORT_SIGN_IN = 480;
2195
2196 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002197 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002198 ACTION_SUPPORT_PHONE = 481;
2199
2200 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002201 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002202 ACTION_SUPPORT_CHAT = 482;
2203
2204 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002205 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002206 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2207
2208 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002209 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002210 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2211
Fan Zhang80807212016-06-30 12:26:55 -07002212 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002213 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002214 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2215
2216 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002217 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002218 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2219
2220 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002221 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002222 ACTION_SUPPORT_DIAL_TOLLED = 487;
2223
Justin Klaassen19494272016-07-18 21:38:24 -07002224 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002225 // CATEGORY: SETTINGS
2226 NIGHT_DISPLAY_SETTINGS = 488;
2227
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002228 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002229 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002230 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2231
Jason Monk484fd362016-07-13 15:24:32 -04002232 // Settings launched from collapsed quick settings.
2233 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2234
Justin Klaassen19494272016-07-18 21:38:24 -07002235 // OPEN: QS Night Light tile shown
2236 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002237 // SUBTYPE: 0 is off, 1 is on
2238 // CATEGORY: QUICK_SETTINGS
2239 QS_NIGHT_DISPLAY = 491;
2240
Justin Klaassen19494272016-07-18 21:38:24 -07002241 // Night Light on
2242 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2243
Doris Ling3c00afb2016-07-19 17:04:21 -07002244 // System navigation key up.
2245 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2246
2247 // System navigation key down.
2248 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2249
Doris Ling6dd3e462016-08-04 13:17:27 -07002250 // OPEN: Settings > Display -> Ambient Display
2251 // CATEGORY: SETTINGS
2252 ACTION_AMBIENT_DISPLAY = 495;
2253
Adrian Roos159ef7b2016-02-25 11:58:32 -08002254 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2255
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002256 // ACTION: The lockscreen gets shown because the SIM card was removed
2257 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2258 // CATEGORY: GLOBAL_SYSTEM_UI
2259 // OS: N-MR2
2260 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2261
2262 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2263
Clara Bayarric17a5982016-04-15 12:26:47 +01002264 // ------- Begin N Keyboard Shortcuts Helper -----
2265 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002266 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002267
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002268 // OPEN: Print Preview screen
2269 // Package: Package of app where print job is from
2270 PRINT_PREVIEW = 501;
2271
2272 // OPEN: User expands full print job options shade in print preview.
2273 PRINT_JOB_OPTIONS = 502;
2274
2275 // OPEN: “All Printers” screen for selecting printer
2276 // Subtype: # of printers listed
2277 PRINT_ALL_PRINTERS = 503;
2278
2279 // OPEN: “Add Printers” screen for adding printers
2280 // Subtype: # of enabled print service listed
2281 PRINT_ADD_PRINTERS = 504;
2282
2283 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2284 // Package: Package of print service.
2285 ACTION_PRINT = 505;
2286
2287 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2288 // Count all ACTION_PRINTER_SELECT_ALL actions.
2289 // Package: Package of print service tied to printer
2290 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2291
2292 // ACTION: User selects a printer from the “All printers” screen.
2293 // Package: Package of print service tied to printer
2294 ACTION_PRINTER_SELECT_ALL = 507;
2295
2296 // ACTION: User changes an option for the print job from print preview.
2297 // Subtype: 1: Copies
2298 // 2: Color mode
2299 // 3: Duplex mode
2300 // 4: Media (==Paper) size
2301 // 5: Orientation
2302 // 6: Page range
2303 // Package: Package of print service tied to printer
2304 ACTION_PRINT_JOB_OPTIONS = 508;
2305
2306 // ACTION: User searches for printer from All Printers
2307 ACTION_PRINTER_SEARCH = 509;
2308
2309 // ACTION: User selects “Add print service” button from All Printers
2310 ACTION_PRINT_SERVICE_ADD = 510;
2311
2312 // ACTION: User Enables/Disables Print Service via any means.
2313 // Subtype: 0: Enabled
2314 // 1: Disabled
2315 ACTION_PRINT_SERVICE_TOGGLE = 511;
2316
2317 // ACTION: User installs print recommended print service
2318 // Package: Package of print service
2319 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2320
Doris Ling88a6b162016-08-08 16:17:43 -07002321 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2322 // SUBTYPE: sub settings classname
2323 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2324
Fan Zhang92c60382016-08-08 14:03:53 -07002325 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2326 USER_DICTIONARY_SETTINGS = 514;
2327
2328 // OPEN: Settings > Date & time > Select time zone
2329 ZONE_PICKER = 515;
2330
2331 // OPEN: Settings > Security > Device administrators
2332 DEVICE_ADMIN_SETTINGS = 516;
2333
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002334 // ACTION: Managed provisioning was launched to set this package as DPC app.
2335 // PACKAGE: DPC's package name.
2336 PROVISIONING_DPC_PACKAGE_NAME = 517;
2337
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002338 // ACTION: Managed provisioning triggered DPC installation.
2339 // PACKAGE: Package name of package which installed DPC.
2340 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2341
2342 // ACTION: Logged when provisioning activity finishes.
2343 // TIME: Indicates time taken by provisioning activity to finish in MS.
2344 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2345
2346 // ACTION: Logged when preprovisioning activity finishes.
2347 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2348 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2349
2350 // ACTION: Logged when encrypt device activity finishes.
2351 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2352 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2353
2354 // ACTION: Logged when web activity finishes.
2355 // TIME: Indicates total time taken by web activity to finish in MS.
2356 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2357
2358 // ACTION: Logged when trampoline activity finishes.
2359 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2360 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2361
2362 // ACTION: Logged when encryption activity finishes.
2363 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2364 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2365
2366 // ACTION: Logged when finalization activity finishes.
2367 // TIME: Indicates time taken by finalization activity to finish in MS.
2368 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002369
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002370 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002371 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002372
Fan Zhang95094182016-08-24 18:14:16 -07002373 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002374 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002375
2376 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002377 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002378
2379 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002380 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002381
2382 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002383 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002384
2385 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002386 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002387
Fan Zhangc1352ae2016-09-16 12:46:11 -07002388 // OPEN: Settings > Security > Use one lock dialog
2389 DIALOG_UNIFICATION_CONFIRMATION = 532;
2390
2391 // OPEN: Settings > Security > User Credential
2392 DIALOG_USER_CREDENTIAL = 533;
2393
2394 // OPEN: Settings > Accounts > Remove account
2395 DIALOG_REMOVE_USER = 534;
2396
2397 // OPEN: Settings > Accounts > Confirm auto sync dialog
2398 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2399
2400 // OPEN: Settings > Apps > Dialog for running service details
2401 DIALOG_RUNNIGN_SERVICE = 536;
2402
2403 // OPEN: Settings > Dialog for hiding home settings
2404 DIALOG_NO_HOME = 537;
2405
2406 // OPEN: Settings > Bluetooth > Rename this device
2407 DIALOG_BLUETOOTH_RENAME = 538;
2408
2409 // OPEN: Settings > Bluetooth > Paired device profile
2410 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2411
2412 // OPEN: Settings > Battery optimization > details for app
2413 DIALOG_HIGH_POWER_DETAILS = 540;
2414
2415 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2416 DIALOG_KEYBOARD_LAYOUT = 541;
2417
2418 // OPEN: Settings > Wifi > WPS Setup dialog
2419 DIALOG_WPS_SETUP = 542;
2420
2421 // OPEN: Settings > WIFI Scan permission dialog
2422 DIALOG_WIFI_SCAN_MODE = 543;
2423
2424 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2425 DIALOG_WIFI_SKIP = 544;
2426
2427 // OPEN: Settings > Wireless > VPN > Config dialog
2428 DIALOG_LEGACY_VPN_CONFIG = 545;
2429
2430 // OPEN: Settings > Wireless > VPN > Config dialog for app
2431 DIALOG_VPN_APP_CONFIG = 546;
2432
2433 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2434 DIALOG_VPN_CANNOT_CONNECT = 547;
2435
2436 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2437 DIALOG_VPN_REPLACE_EXISTING = 548;
2438
2439 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2440 DIALOG_BILLING_CYCLE = 549;
2441
2442 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2443 DIALOG_BILLING_BYTE_LIMIT = 550;
2444
2445 // OPEN: Settings > Billing cycle > turn on data limit dialog
2446 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2447
2448 // OPEN: Settings > Service > Turn off notification access dialog
2449 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2450
2451 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2452 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2453
2454 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2455 DIALOG_ZEN_ACCESS_GRANT = 554;
2456
2457 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2458 DIALOG_ZEN_ACCESS_REVOKE = 555;
2459
2460 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2461 DIALOG_ZEN_TIMEPICKER = 556;
2462
2463 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2464 DIALOG_SERVICE_ACCESS_WARNING = 557;
2465
2466 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2467 DIALOG_APP_INFO_ACTION = 558;
2468
2469 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2470 DIALOG_VOLUME_FORGET = 559;
2471
2472 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2473 DIALOG_VOLUME_SLOW_WARNING = 560;
2474
2475 // OPEN: Settings > Storage > Dialog for initializing a volume
2476 DIALOG_VOLUME_INIT = 561;
2477
2478 // OPEN: Settings > Storage > Dialog for unmounting a volume
2479 DIALOG_VOLUME_UNMOUNT = 562;
2480
2481 // OPEN: Settings > Storage > Dialog for renaming a volume
2482 DIALOG_VOLUME_RENAME = 563;
2483
2484 // OPEN: Settings > Storage > Dialog for clear cache
2485 DIALOG_STORAGE_CLEAR_CACHE = 564;
2486
2487 // OPEN: Settings > Storage > Dialog for system info
2488 DIALOG_STORAGE_SYSTEM_INFO = 565;
2489
2490 // OPEN: Settings > Storage > Dialog for other info
2491 DIALOG_STORAGE_OTHER_INFO = 566;
2492
2493 // OPEN: Settings > Storage > Dialog for user info
2494 DIALOG_STORAGE_USER_INFO = 567;
2495
2496 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2497 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2498
2499 // OPEN: Settings > Add fingerprint > Error dialog
2500 DIALOG_FINGERPINT_ERROR = 569;
2501
2502 // OPEN: Settings > Fingerprint > Rename or delete dialog
2503 DIALOG_FINGERPINT_EDIT = 570;
2504
2505 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2506 DIALOG_FINGERPINT_DELETE_LAST = 571;
2507
2508 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2509 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2510
2511 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2512 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2513
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002514 // OPEN: Settings > Proxy Selector error dialog
2515 DIALOG_PROXY_SELECTOR_ERROR = 574;
2516
2517 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2518 DIALOG_WIFI_P2P_DISCONNECT = 575;
2519
2520 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2521 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2522
2523 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2524 DIALOG_WIFI_P2P_RENAME = 577;
2525
2526 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2527 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2528
2529 // OPEN: Settings > APN > Restore default dialog
2530 DIALOG_APN_RESTORE_DEFAULT = 579;
2531
2532 // OPEN: Settings > Dream > When to dream dialog
2533 DIALOG_DREAM_START_DELAY = 580;
2534
2535 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2536 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2537
2538 // OPEN: Settings > Tether > AP setting dialog
2539 DIALOG_AP_SETTINGS = 582;
2540
2541 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2542 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2543
2544 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2545 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2546
2547 // OPEN: Settings > Account > Remove account dialog
2548 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2549
2550 // OPEN: Settings > Account > Remove account failed dialog
2551 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2552
2553 // OPEN: Settings > Account > Cannot do onetime sync dialog
2554 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2555
2556 // OPEN: Settings > Display > Night light > Set start time dialog
2557 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2558
2559 // OPEN: Settings > Display > Night light > Set end time dialog
2560 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2561
2562 // OPEN: Settings > User > Edit info dialog
2563 DIALOG_USER_EDIT = 590;
2564
2565 // OPEN: Settings > User > Confirm remove dialog
2566 DIALOG_USER_REMOVE = 591;
2567
2568 // OPEN: Settings > User > Enable calling dialog
2569 DIALOG_USER_ENABLE_CALLING = 592;
2570
2571 // OPEN: Settings > User > Enable calling and sms dialog
2572 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2573
2574 // OPEN: Settings > User > Cannot manage device message dialog
2575 DIALOG_USER_CANNOT_MANAGE = 594;
2576
2577 // OPEN: Settings > User > Add user dialog
2578 DIALOG_USER_ADD = 595;
2579
2580 // OPEN: Settings > User > Setup user dialog
2581 DIALOG_USER_SETUP = 596;
2582
2583 // OPEN: Settings > User > Setup profile dialog
2584 DIALOG_USER_SETUP_PROFILE = 597;
2585
2586 // OPEN: Settings > User > Choose user type dialog
2587 DIALOG_USER_CHOOSE_TYPE = 598;
2588
2589 // OPEN: Settings > User > Need lockscreen dialog
2590 DIALOG_USER_NEED_LOCKSCREEN = 599;
2591
2592 // OPEN: Settings > User > Confirm exit guest mode dialog
2593 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2594
2595 // OPEN: Settings > User > Edit user profile dialog
2596 DIALOG_USER_EDIT_PROFILE = 601;
2597
2598 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2599 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2600
2601 // OPEN: Settings > Wifi > Edit AP dialog
2602 DIALOG_WIFI_AP_EDIT = 603;
2603
2604 // OPEN: Settings > Wifi > PBC Config dialog
2605 DIALOG_WIFI_PBC = 604;
2606
2607 // OPEN: Settings > Wifi > Display pin dialog
2608 DIALOG_WIFI_PIN = 605;
2609
2610 // OPEN: Settings > Wifi > Write config to NFC dialog
2611 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002612 // OPEN: Settings > Date > Date picker dialog
2613 DIALOG_DATE_PICKER = 607;
2614
2615 // OPEN: Settings > Date > Time picker dialog
2616 DIALOG_TIME_PICKER = 608;
2617
2618 // OPEN: Settings > Wireless > Manage wireless plan dialog
2619 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002620
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002621 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002622 PROVISIONING_NETWORK_TYPE = 610;
2623
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002624 // ACTION: Logs action which triggered provisioning.
2625 PROVISIONING_ACTION = 611;
2626
Mahaver Chopraab282072016-10-06 19:19:23 +01002627 // ACTION: Logs extra passed by the dpc while provisioning.
2628 PROVISIONING_EXTRA = 612;
2629
Salvador Martinez64867c12016-10-14 15:25:09 -07002630 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2631 BLUETOOTH_DIALOG_FRAGMENT = 613;
2632
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002633 // ACTION: Logs provisioning started by zero touch.
2634 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2635
2636 // ACTION: Logs provisioning started by NFC bump.
2637 PROVISIONING_ENTRY_POINT_NFC = 615;
2638
2639 // ACTION: Logs provisioning started using QR code.
2640 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2641
2642 // ACTION: Logs provisioning started using adb.
2643 PROVISIONING_ENTRY_POINT_ADB = 617;
2644
2645 // ACTION: Logs provisioning started by trusted source.
2646 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2647
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002648 // ACTION: Logged when copy account task finishes.
2649 // TIME: Indicates time taken by copy account task to finish in MS.
2650 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2651
2652 // ACTION: Logged when create profile task finishes.
2653 // TIME: Indicates time taken by create profile task to finish in MS.
2654 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2655
2656 // ACTION: Logged when start profile task finishes.
2657 // TIME: Indicates time taken by start profile task to finish in MS.
2658 PROVISIONING_START_PROFILE_TASK_MS = 621;
2659
2660 // ACTION: Logged when download package task finishes.
2661 // TIME: Indicates time taken by download package task to finish in MS.
2662 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2663
2664 // ACTION: Logged when install package task finishes.
2665 // TIME: Indicates time taken by install package task to finish in MS.
2666 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2667
2668 // ACTION: User cancelled provisioning.
2669 PROVISIONING_CANCELLED = 624;
2670
2671 // ACTION: Logged when provisioning throws an error.
2672 PROVISIONING_ERROR = 625;
2673
2674 // ACTION: Logs the status of copying user account during provisioning.
2675 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2676
2677 // ACTION: Logs the end to end time taken by all provisioning tasks.
2678 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2679
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002680 // OPEN: Settings > Privacy
2681 // CATEGORY: SETTINGS
2682 // OS: O
2683 ENTERPRISE_PRIVACY_SETTINGS = 628;
2684
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002685 // ACTION: Longpress on a TextView.
2686 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2687 // CATEGORY: TEXT_CONTROLS
2688 // OS: O
2689 TEXT_LONGPRESS = 629;
2690
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002691 // ACTION: An app requested an unknown permission
2692 // PACKAGE: The package name of the app requesting the permission
2693 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2694
2695 // ACTION: An app was granted an unknown permission
2696 // PACKAGE: The package name of the app that was granted the permission
2697 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2698
2699 // ACTION: An app requested an unknown permission and the request was denied
2700 // PACKAGE: The package name of the app requesting the permission
2701 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2702
2703 // ACTION: An unknown permission was revoked for an app
2704 // PACKAGE: The package name of the app the permission was revoked for
2705 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2706
2707 // ACTION: An app requested the permission READ_CALENDAR
2708 // PACKAGE: The package name of the app requesting the permission
2709 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2710
2711 // ACTION: An app was granted the permission READ_CALENDAR
2712 // PACKAGE: The package name of the app that was granted the permission
2713 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2714
2715 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2716 // PACKAGE: The package name of the app requesting the permission
2717 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2718
2719 // ACTION: The permission READ_CALENDAR was revoked for an app
2720 // PACKAGE: The package name of the app the permission was revoked for
2721 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2722
2723 // ACTION: An app requested the permission WRITE_CALENDAR
2724 // PACKAGE: The package name of the app requesting the permission
2725 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2726
2727 // ACTION: An app was granted the permission WRITE_CALENDAR
2728 // PACKAGE: The package name of the app that was granted the permission
2729 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2730
2731 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2732 // PACKAGE: The package name of the app requesting the permission
2733 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2734
2735 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2736 // PACKAGE: The package name of the app the permission was revoked for
2737 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2738
2739 // ACTION: An app requested the permission CAMERA
2740 // PACKAGE: The package name of the app requesting the permission
2741 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2742
2743 // ACTION: An app was granted the permission CAMERA
2744 // PACKAGE: The package name of the app that was granted the permission
2745 ACTION_PERMISSION_GRANT_CAMERA = 643;
2746
2747 // ACTION: An app requested the permission CAMERA and the request was denied
2748 // PACKAGE: The package name of the app requesting the permission
2749 ACTION_PERMISSION_DENIED_CAMERA = 644;
2750
2751 // ACTION: The permission CAMERA was revoked for an app
2752 // PACKAGE: The package name of the app the permission was revoked for
2753 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2754
2755 // ACTION: An app requested the permission READ_CONTACTS
2756 // PACKAGE: The package name of the app requesting the permission
2757 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2758
2759 // ACTION: An app was granted the permission READ_CONTACTS
2760 // PACKAGE: The package name of the app that was granted the permission
2761 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2762
2763 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2764 // PACKAGE: The package name of the app requesting the permission
2765 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2766
2767 // ACTION: The permission READ_CONTACTS was revoked for an app
2768 // PACKAGE: The package name of the app the permission was revoked for
2769 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2770
2771 // ACTION: An app requested the permission WRITE_CONTACTS
2772 // PACKAGE: The package name of the app requesting the permission
2773 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2774
2775 // ACTION: An app was granted the permission WRITE_CONTACTS
2776 // PACKAGE: The package name of the app that was granted the permission
2777 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2778
2779 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2780 // PACKAGE: The package name of the app requesting the permission
2781 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2782
2783 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2784 // PACKAGE: The package name of the app the permission was revoked for
2785 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2786
2787 // ACTION: An app requested the permission GET_ACCOUNTS
2788 // PACKAGE: The package name of the app requesting the permission
2789 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2790
2791 // ACTION: An app was granted the permission GET_ACCOUNTS
2792 // PACKAGE: The package name of the app that was granted the permission
2793 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2794
2795 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2796 // PACKAGE: The package name of the app requesting the permission
2797 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2798
2799 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2800 // PACKAGE: The package name of the app the permission was revoked for
2801 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2802
2803 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2804 // PACKAGE: The package name of the app requesting the permission
2805 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2806
2807 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2808 // PACKAGE: The package name of the app that was granted the permission
2809 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2810
2811 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2812 // PACKAGE: The package name of the app requesting the permission
2813 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2814
2815 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2816 // PACKAGE: The package name of the app the permission was revoked for
2817 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2818
2819 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2820 // PACKAGE: The package name of the app requesting the permission
2821 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2822
2823 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2824 // PACKAGE: The package name of the app that was granted the permission
2825 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2826
2827 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2828 // PACKAGE: The package name of the app requesting the permission
2829 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2830
2831 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2832 // PACKAGE: The package name of the app the permission was revoked for
2833 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2834
2835 // ACTION: An app requested the permission RECORD_AUDIO
2836 // PACKAGE: The package name of the app requesting the permission
2837 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2838
2839 // ACTION: An app was granted the permission RECORD_AUDIO
2840 // PACKAGE: The package name of the app that was granted the permission
2841 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2842
2843 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2844 // PACKAGE: The package name of the app requesting the permission
2845 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2846
2847 // ACTION: The permission RECORD_AUDIO was revoked for an app
2848 // PACKAGE: The package name of the app the permission was revoked for
2849 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2850
2851 // ACTION: An app requested the permission READ_PHONE_STATE
2852 // PACKAGE: The package name of the app requesting the permission
2853 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2854
2855 // ACTION: An app was granted the permission READ_PHONE_STATE
2856 // PACKAGE: The package name of the app that was granted the permission
2857 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2858
2859 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2860 // PACKAGE: The package name of the app requesting the permission
2861 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2862
2863 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2864 // PACKAGE: The package name of the app the permission was revoked for
2865 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2866
2867 // ACTION: An app requested the permission CALL_PHONE
2868 // PACKAGE: The package name of the app requesting the permission
2869 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2870
2871 // ACTION: An app was granted the permission CALL_PHONE
2872 // PACKAGE: The package name of the app that was granted the permission
2873 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2874
2875 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2876 // PACKAGE: The package name of the app requesting the permission
2877 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2878
2879 // ACTION: The permission CALL_PHONE was revoked for an app
2880 // PACKAGE: The package name of the app the permission was revoked for
2881 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2882
2883 // ACTION: An app requested the permission READ_CALL_LOG
2884 // PACKAGE: The package name of the app requesting the permission
2885 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2886
2887 // ACTION: An app was granted the permission READ_CALL_LOG
2888 // PACKAGE: The package name of the app that was granted the permission
2889 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2890
2891 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2892 // PACKAGE: The package name of the app requesting the permission
2893 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2894
2895 // ACTION: The permission READ_CALL_LOG was revoked for an app
2896 // PACKAGE: The package name of the app the permission was revoked for
2897 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2898
2899 // ACTION: An app requested the permission WRITE_CALL_LOG
2900 // PACKAGE: The package name of the app requesting the permission
2901 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
2902
2903 // ACTION: An app was granted the permission WRITE_CALL_LOG
2904 // PACKAGE: The package name of the app that was granted the permission
2905 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
2906
2907 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
2908 // PACKAGE: The package name of the app requesting the permission
2909 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
2910
2911 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
2912 // PACKAGE: The package name of the app the permission was revoked for
2913 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
2914
2915 // ACTION: An app requested the permission ADD_VOICEMAIL
2916 // PACKAGE: The package name of the app requesting the permission
2917 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
2918
2919 // ACTION: An app was granted the permission ADD_VOICEMAIL
2920 // PACKAGE: The package name of the app that was granted the permission
2921 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
2922
2923 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
2924 // PACKAGE: The package name of the app requesting the permission
2925 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
2926
2927 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
2928 // PACKAGE: The package name of the app the permission was revoked for
2929 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
2930
2931 // ACTION: An app requested the permission USE_SIP
2932 // PACKAGE: The package name of the app requesting the permission
2933 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
2934
2935 // ACTION: An app was granted the permission USE_SIP
2936 // PACKAGE: The package name of the app that was granted the permission
2937 ACTION_PERMISSION_GRANT_USE_SIP = 691;
2938
2939 // ACTION: An app requested the permission USE_SIP and the request was denied
2940 // PACKAGE: The package name of the app requesting the permission
2941 ACTION_PERMISSION_DENIED_USE_SIP = 692;
2942
2943 // ACTION: The permission USE_SIP was revoked for an app
2944 // PACKAGE: The package name of the app the permission was revoked for
2945 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
2946
2947 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
2948 // PACKAGE: The package name of the app requesting the permission
2949 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
2950
2951 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
2952 // PACKAGE: The package name of the app that was granted the permission
2953 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
2954
2955 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
2956 // PACKAGE: The package name of the app requesting the permission
2957 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
2958
2959 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
2960 // PACKAGE: The package name of the app the permission was revoked for
2961 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
2962
2963 // ACTION: An app requested the permission READ_CELL_BROADCASTS
2964 // PACKAGE: The package name of the app requesting the permission
2965 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
2966
2967 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
2968 // PACKAGE: The package name of the app that was granted the permission
2969 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
2970
2971 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
2972 // PACKAGE: The package name of the app requesting the permission
2973 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
2974
2975 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
2976 // PACKAGE: The package name of the app the permission was revoked for
2977 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
2978
2979 // ACTION: An app requested the permission BODY_SENSORS
2980 // PACKAGE: The package name of the app requesting the permission
2981 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
2982
2983 // ACTION: An app was granted the permission BODY_SENSORS
2984 // PACKAGE: The package name of the app that was granted the permission
2985 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
2986
2987 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
2988 // PACKAGE: The package name of the app requesting the permission
2989 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
2990
2991 // ACTION: The permission BODY_SENSORS was revoked for an app
2992 // PACKAGE: The package name of the app the permission was revoked for
2993 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
2994
2995 // ACTION: An app requested the permission SEND_SMS
2996 // PACKAGE: The package name of the app requesting the permission
2997 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
2998
2999 // ACTION: An app was granted the permission SEND_SMS
3000 // PACKAGE: The package name of the app that was granted the permission
3001 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3002
3003 // ACTION: An app requested the permission SEND_SMS and the request was denied
3004 // PACKAGE: The package name of the app requesting the permission
3005 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3006
3007 // ACTION: The permission SEND_SMS was revoked for an app
3008 // PACKAGE: The package name of the app the permission was revoked for
3009 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3010
3011 // ACTION: An app requested the permission RECEIVE_SMS
3012 // PACKAGE: The package name of the app requesting the permission
3013 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3014
3015 // ACTION: An app was granted the permission RECEIVE_SMS
3016 // PACKAGE: The package name of the app that was granted the permission
3017 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3018
3019 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3020 // PACKAGE: The package name of the app requesting the permission
3021 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3022
3023 // ACTION: The permission RECEIVE_SMS was revoked for an app
3024 // PACKAGE: The package name of the app the permission was revoked for
3025 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3026
3027 // ACTION: An app requested the permission READ_SMS
3028 // PACKAGE: The package name of the app requesting the permission
3029 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3030
3031 // ACTION: An app was granted the permission READ_SMS
3032 // PACKAGE: The package name of the app that was granted the permission
3033 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3034
3035 // ACTION: An app requested the permission READ_SMS and the request was denied
3036 // PACKAGE: The package name of the app requesting the permission
3037 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3038
3039 // ACTION: The permission READ_SMS was revoked for an app
3040 // PACKAGE: The package name of the app the permission was revoked for
3041 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3042
3043 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3044 // PACKAGE: The package name of the app requesting the permission
3045 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3046
3047 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3048 // PACKAGE: The package name of the app that was granted the permission
3049 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3050
3051 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3052 // PACKAGE: The package name of the app requesting the permission
3053 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3054
3055 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3056 // PACKAGE: The package name of the app the permission was revoked for
3057 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3058
3059 // ACTION: An app requested the permission RECEIVE_MMS
3060 // PACKAGE: The package name of the app requesting the permission
3061 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3062
3063 // ACTION: An app was granted the permission RECEIVE_MMS
3064 // PACKAGE: The package name of the app that was granted the permission
3065 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3066
3067 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3068 // PACKAGE: The package name of the app requesting the permission
3069 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3070
3071 // ACTION: The permission RECEIVE_MMS was revoked for an app
3072 // PACKAGE: The package name of the app the permission was revoked for
3073 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3074
3075 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3076 // PACKAGE: The package name of the app requesting the permission
3077 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3078
3079 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3080 // PACKAGE: The package name of the app that was granted the permission
3081 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3082
3083 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3084 // PACKAGE: The package name of the app requesting the permission
3085 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3086
3087 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3088 // PACKAGE: The package name of the app the permission was revoked for
3089 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3090
3091 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3092 // PACKAGE: The package name of the app requesting the permission
3093 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3094
3095 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3096 // PACKAGE: The package name of the app that was granted the permission
3097 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3098
3099 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3100 // PACKAGE: The package name of the app requesting the permission
3101 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3102
3103 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3104 // PACKAGE: The package name of the app the permission was revoked for
3105 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3106
Mahaverfa6566e2016-11-29 21:08:14 +00003107 // ACTION: Logged when a provisioning session has started
3108 PROVISIONING_SESSION_STARTED = 734;
3109
3110 // ACTION: Logged when a provisioning session has completed
3111 PROVISIONING_SESSION_COMPLETED = 735;
3112
Chad Brubaker811825a2016-12-06 12:31:15 -08003113 // ACTION: An app requested the permission READ_PHONE_NUMBER
3114 // PACKAGE: The package name of the app requesting the permission
3115 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBER = 736;
3116
3117 // ACTION: An app was granted the permission READ_PHONE_NUMBER
3118 // PACKAGE: The package name of the app that was granted the permission
3119 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBER = 737;
3120
3121 // ACTION: An app requested the permission READ_PHONE_NUMBER and the request was denied
3122 // PACKAGE: The package name of the app requesting the permission
3123 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBER = 738;
3124
3125 // ACTION: The permission READ_PHONE_NUMBER was revoked for an app
3126 // PACKAGE: The package name of the app the permission was revoked for
3127 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBER = 739;
3128
Santos Cordon3107d292016-09-20 15:50:35 -07003129 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3130 // SUBTYPE: slider value
3131 // CATEGORY: QUICK_SETTINGS
3132 // OS: 6.0
3133 ACTION_BRIGHTNESS_FOR_VR = 498;
3134
Hugo Benichie1cbf152016-12-08 09:36:52 +09003135 // ACTION: A captive portal was detected during network validation
3136 // CATEGORY: NOTIFICATION
3137 // OS: N-MR2
3138 NOTIFICATION_NETWORK_SIGN_IN = 740;
3139
3140 // ACTION: An unvalidated network without Internet was selected by the user
3141 // CATEGORY: NOTIFICATION
3142 // OS: N-MR2
3143 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3144
3145 // ACTION: A validated network failed revalidation and lost Internet access
3146 // CATEGORY: NOTIFICATION
3147 // OS: N-MR2
3148 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3149
3150 // ACTION: The system default network switched to a different network
3151 // CATEGORY: NOTIFICATION
3152 // OS: N-MR2
3153 NOTIFICATION_NETWORK_SWITCH = 743;
3154
Fan Zhang074c4cb2016-12-21 12:10:33 -08003155 // OPEN: Settings > System
3156 SETTINGS_SYSTEM_CATEGORY = 744;
3157
3158 // OPEN: Settings > Storage
3159 SETTINGS_STORAGE_CATEGORY = 745;
3160
3161 // OPEN: Settings > Network & Internet
3162 SETTINGS_NETWORK_CATEGORY = 746;
3163
3164 // OPEN: Settings > Connected Device
3165 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3166
3167 // OPEN: Settings > App & Notification
3168 SETTINGS_APP_NOTIF_CATEGORY = 748;
3169
3170 // OPEN: Settings > System > Input & Gesture
3171 SETTINGS_INPUT_CATEGORY = 749;
3172
3173 // OPEN: Settings > System > Language & Region
3174 SETTINGS_LANGUAGE_CATEGORY = 750;
3175
3176 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3177 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3178
3179 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3180 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3181
3182 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3183 SETTINGS_GESTURE_PICKUP = 753;
3184
3185 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3186 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3187
3188 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3189 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3190
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003191 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3192 // CATEGORY: Settings
3193 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3194
Alison Cichowlas803054d2016-12-13 14:38:01 -05003195 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003196 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003197 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3198 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3199 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003200
Salvador Martinezc43ab062016-12-21 11:09:11 -08003201 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3202 // user accepted
3203 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003204
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003205 // Enclosing category for group of APP_TRANSITION_FOO events,
3206 // logged when we execute an app transition.
3207 APP_TRANSITION = 761;
3208
Fan Zhang945deea2017-01-11 16:37:49 -08003209 // ACTION: User leaves Settings search UI without entering any query.
3210 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3211
3212 // ACTION: Clicking on any search result in Settings.
3213 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003214
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003215 // ACTION: Allow Battery optimization for an app
3216 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3217
3218 // ACTION: Deny Battery optimization for an app
3219 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3220
3221 // ACTION: Enable Device Admin app
3222 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3223
3224 // ACTION: Disable Device Admin app
3225 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3226
3227 // ACTION: Allow "Do Not Disturb access" for an app
3228 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3229
3230 // ACTION: Deny "Do Not Disturb access" for an app
3231 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3232
3233 // ACTION: Allow "Draw over other apps" for an app
3234 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3235
Christine Franks47175c32017-03-14 10:21:25 -07003236 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003237 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3238
3239 // ACTION: Allow "VR helper services" for an app
3240 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3241
3242 // ACTION: Deny "VR helper services" for an app
3243 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3244
3245 // ACTION: Allow "Modify system settings" for an app
3246 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3247
3248 // ACTION: Deny "Modify system settings" for an app
3249 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3250
3251 // ACTION: Allow "Notification access" for an app
3252 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3253
3254 // ACTION: Deny "Notification access" for an app
3255 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3256
3257 // ACTION: "Premium SMS access" for an app - "ask user" option
3258 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3259
3260 // ACTION: "Premium SMS access" for an app - "never allow" option
3261 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3262
3263 // ACTION: "Premium SMS access" for an app - "always allow" option
3264 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3265
3266 // ACTION: Allow "Unrestricted data access" for an app
3267 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3268
3269 // ACTION: Deny "Unrestricted data access" for an app
3270 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3271
3272 // ACTION: Allow "Usage access" for an app
3273 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3274
3275 // ACTION: Deny "Usage access" for an app
3276 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3277
Fan Zhangad5dacc2017-01-18 14:18:54 -08003278 // OPEN: Settings > Apps > Default Apps > Default browser
3279 DEFAULT_BROWSER_PICKER = 785;
3280
3281 // OPEN: Settings > Apps > Default Apps > Default emergency app
3282 DEFAULT_EMERGENCY_APP_PICKER = 786;
3283
3284 // OPEN: Settings > Apps > Default Apps > Default home
3285 DEFAULT_HOME_PICKER = 787;
3286
3287 // OPEN: Settings > Apps > Default Apps > Default phone
3288 DEFAULT_PHONE_PICKER = 788;
3289
3290 // OPEN: Settings > Apps > Default Apps > Default sms
3291 DEFAULT_SMS_PICKER = 789;
3292
3293 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3294 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3295
3296 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3297 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3298
Jason Long1b51da62017-01-24 11:35:31 -08003299 // OPEN: Settings > Apps > Default Apps > Default autofill app
3300 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003301
Chris Wren26ca65d2016-11-29 10:43:28 -05003302 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003303 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003304 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3305 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3306 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3307 NOTIFICATION_ID = 796;
3308 NOTIFICATION_TAG = 797;
3309 NOTIFICATION_SHADE_INDEX = 798;
3310 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003311
Anas Karbilaf7648f42016-12-11 00:55:02 +01003312 // OPEN: QS NFC tile shown
3313 // ACTION: QS NFC tile tapped
3314 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003315 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003316
Chris Wren26ca65d2016-11-29 10:43:28 -05003317 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003318 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003319 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3320 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3321 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3322 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3323 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3324 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3325
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003326 // ACTION: "Force stop" action on an app
3327 ACTION_APP_FORCE_STOP = 807;
3328
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003329 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3330 // CATEGORY: SETTINGS
3331 // OS: 8.0
3332 MANAGE_EXTERNAL_SOURCES = 808;
3333
Mahaver6cd47162017-01-23 09:59:33 +00003334 // ACTION: Logged when terms activity finishes.
3335 // TIME: Indicates time taken by terms activity to finish in MS.
3336 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3337
3338 // Indicates number of terms displayed on the terms screen.
3339 PROVISIONING_TERMS_COUNT = 810;
3340
3341 // Indicates number of terms read on the terms screen.
3342 PROVISIONING_TERMS_READ = 811;
3343
Winson Chung59fda9e2017-01-20 16:14:51 -08003344 // Logs that the user has edited the picture-in-picture settings.
3345 // CATEGORY: SETTINGS
3346 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3347
Winson Chungf4ac0632017-03-17 12:34:12 -07003348 // ACTION: Allow "Enable picture-in-picture" for an app
3349 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003350
Winson Chungf4ac0632017-03-17 12:34:12 -07003351 // ACTION: Deny "Enable picture-in-picture" for an app
3352 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003353
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003354 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3355 // CATEGORY: SETTINGS
3356 // OS: 8.0
3357 TTS_SLIDERS = 815;
3358
Jason Monk524fb402017-01-25 10:33:31 -05003359 // ACTION: Settings -> Display -> Theme
3360 ACTION_THEME = 816;
3361
chchaob8e253a2017-01-25 12:12:09 -08003362 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3363 // ACTION: Select to Speak configuration is chosen
3364 // SUBTYPE: 0 is off, 1 is on
3365 // CATEGORY: SETTINGS
3366 // OS: N
3367 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3368
Anton Philippov95a553e2017-01-27 00:08:24 +00003369 // OPEN: Settings > System > Backup
3370 // CATEGORY: SETTINGS
3371 // OS: O
3372 BACKUP_SETTINGS = 818;
3373
Winson Chung14fbe142016-12-19 16:18:24 -08003374 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003375 // VALUE: true if it was entered while hiding as a result of moving to
3376 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003377 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3378
3379 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3380 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3381 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3382
3383 // ACTION: The activity currently in picture-in-picture was minimized
3384 // VALUE: True if the PiP was minimized, false otherwise
3385 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3386
3387 // ACTION: Picture-in-picture was dismissed via the dismiss button
3388 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3389 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3390
3391 // ACTION: The visibility of the picture-in-picture meny
3392 // VALUE: Whether or not the menu is visible
3393 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3394
3395 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3396 // logged when the aspect ratio changes
3397 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3398
3399 // The current aspect ratio of the PiP, logged when it changes.
3400 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3401
Chris Wren27a52fa2017-02-01 14:21:43 -05003402 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3403 // CATEGORY: GLOBAL_SYSTEM_UI
3404 // OS: O
3405 FIELD_GESTURE_LENGTH = 826;
3406
3407 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3408 // CATEGORY: GLOBAL_SYSTEM_UI
3409 // OS: O
3410 FIELD_GESTURE_VELOCITY = 827;
3411
Christine Franks27fde392017-02-07 10:21:55 -08003412 // OPEN: Carrier demo mode password dialog
3413 CARRIER_DEMO_MODE_PASSWORD = 828;
3414
Fan Zhang70967f32017-02-13 16:02:24 -08003415 // ACTION: Create a Settings shortcut item.
3416 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3417
3418 // ACTION: A tile in Settings information architecture is clicked
3419 ACTION_SETTINGS_TILE_CLICK = 830;
3420
Julia Reynolds520df6e2017-02-13 09:05:10 -05003421 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3422 // updated
3423 // CATEGORY: NOTIFICATION
3424 // OS: O
3425 NOTIFICATION_SNOOZED = 831;
3426
3427 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3428 // OS: O
3429 NOTIFICATION_SNOOZED_CRITERIA = 832;
3430
Fan Zhang65899432017-02-14 13:36:53 -08003431 // FIELD - The context (source) from which an action is performed
3432 FIELD_CONTEXT = 833;
3433
Fan Zhangd95dcb42017-02-14 13:48:09 -08003434 // ACTION: Settings advanced button is expanded
3435 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3436
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003437 // ACTION: Logs the number of times the saved network evaluator was used to
3438 // recommend a wifi network
3439 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3440
3441 // ACTION: Logs the number of times the recommended network evaluator was
3442 // used to recommend a wifi network
3443 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3444
3445 // ACTION: Logs the number of times a recommended network was resulted in a
3446 // successful connection
3447 // VALUE: true if the connection was successful, false if the connection failed
3448 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3449
Daniel Nishic581bfc2017-02-08 10:18:19 -08003450 // OPEN: Settings > Storage > Games
3451 // CATEGORY: SETTINGS
3452 // OS: O
3453 APPLICATIONS_STORAGE_GAMES = 838;
3454
3455 // OPEN: Settings > Storage > Audio and Music
3456 // CATEGORY: SETTINGS
3457 // OS: O
3458 APPLICATIONS_STORAGE_MUSIC = 839;
3459
3460 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3461 // CATEGORY: SETTINGS
3462 // OS: O
3463 STORAGE_FREE_UP_SPACE_NOW = 840;
3464
3465 // ACTION: Settings > Storage > Files to open the File Manager
3466 // CATEGORY: SETTINGS
3467 // OS: O
3468 STORAGE_FILES = 841;
3469
Fan Zhangb1d49222017-02-15 17:12:58 -08003470 // FIELD - Rank of the clicked Settings search result
3471 FIELD_SETTINGS_SERACH_RESULT_RANK = 842;
3472
Fan Zhang7f2cace2017-02-17 12:05:48 -08003473 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3474 DEFAULT_ASSIST_PICKER = 843;
3475
3476 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3477 DEFAULT_VOICE_INPUT_PICKER = 844;
3478
Daniel Nishi4058a842017-02-21 17:11:35 -08003479 // OPEN: Settings > Storage > [Profile]
3480 SETTINGS_STORAGE_PROFILE = 845;
3481
Doris Lingedb84c32017-02-23 10:56:01 -08003482 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3483 // CATEGORY: SETTINGS
3484 // OS: O
3485 ENCRYPTION_AND_CREDENTIAL = 846;
3486
Fan Zhangb66e5422017-02-24 14:37:45 -08003487 // ACTION: Settings > About device > Build number
3488 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3489
3490 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3491 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3492
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003493 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3494 // CATEGORY: SETTINGS
3495 // OS: O
3496 WIFI_NETWORK_DETAILS = 849;
3497
jackqdyuleia2a14342017-02-28 16:20:48 -08003498 // ACTION: Settings > Battery > Menu > Usage Alerts
3499 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3500
3501 // ACTION: Settings > Battery > Menu > Optimization
3502 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3503
3504 // ACTION: Settings > Battery > Menu > Apps Toggle
3505 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3506
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003507 // ACTION: Settings > Any preference is changed
3508 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3509
3510 // FIELD: The name of preference when it is changed in Settings
3511 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3512
3513 // FIELD: The new value of preference when it is changed in Settings
3514 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3515
Julia Reynoldsd373d782017-03-03 13:32:57 -05003516 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3517 // channel updated
3518 // PACKAGE: the package the channel belongs too
3519 // CATEGORY: NOTIFICATION
3520 // OS: O
3521 ACTION_NOTIFICATION_CHANNEL = 856;
3522
3523 // Tagged data for notification channel. String.
3524 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3525
3526 // Tagged data for notification channel. int.
3527 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3528
3529 // OPEN: Notification channel group created.
3530 // PACKAGE: the package the group belongs to
3531 // CATEGORY: NOTIFICATION
3532 // OS: O
3533 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3534
3535 // Tagged data for notification channel group. String.
3536 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3537
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003538 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3539 // CATEGORY: SETTINGS
3540 // OS: O
3541 SETTINGS_NETWORK_SCORER = 861;
3542
Fan Zhang99861312017-03-07 14:32:38 -08003543 // OPEN: Settings > About device > Model > Hardware info dialog
3544 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3545
mariagpuyol0f5512e2017-03-01 12:09:56 -08003546 // ACTION: Checks whether a contact's phone still exists
3547 // Value 0: It doesn't exist anymore
3548 // Value 1: It still exists
3549 // Value 2: A SecurityException was thrown
3550 // CATEGORY: SETTINGS
3551 // OS: N
3552 ACTION_PHONE_EXISTS = 863;
3553
3554 // ACTION: Retrieves a contact from CP2
3555 // Value 0: Contact retrieved without issues
3556 // Value 1: An IllegalArgumentException was thrown
3557 // CATEGORY: SETTINGS
3558 // OS: N
3559 ACTION_GET_CONTACT = 864;
3560
Chris Wren67b3eb92017-03-07 11:31:12 -05003561 // This values should never appear in log outputs - it is reserved for
3562 // internal platform metrics use.
3563 RESERVED_FOR_LOGBUILDER_PID = 865;
3564
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003565 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3566 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3567
3568 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3569 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3570
3571 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3572 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3573
3574 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3575 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3576
3577 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3578 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3579
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003580 // The name of the activity being launched in an app transition event.
3581 APP_TRANSITION_ACTIVITY_NAME = 871;
3582
Fan Zhang082d21c2017-03-13 15:25:54 -07003583 // ACTION: Settings > App detail > Uninstall
3584 ACTION_SETTINGS_UNINSTALL_APP = 872;
3585
3586 // ACTION: Settings > App detail > Uninstall Device admin app
3587 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3588
3589 // ACTION: Settings > App detail > Disable app
3590 ACTION_SETTINGS_DISABLE_APP = 874;
3591
3592 // ACTION: Settings > App detail > Enable app
3593 ACTION_SETTINGS_ENABLE_APP = 875;
3594
3595 // ACTION: Settings > App detail > Clear data
3596 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3597
3598 // ACTION: Settings > App detail > Clear cache
3599 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3600
3601 // ACTION: Clicking on any search result in Settings.
3602 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3603
3604 // FIELD: Settings inline search result name
3605 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3606
3607 // FIELD: Settings inline search result value
3608 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3609
Fan Zhang53797932017-03-13 17:46:24 -07003610 // ACTION: Settings > Search > Click saved queries
3611 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3612
Doris Lingbf8d9de2017-03-15 11:52:50 -07003613 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3614 // CATEGORY: SETTINGS
3615 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3616
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003617 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3618 // PACKAGE: The package name of the app requesting the permission
3619 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3620
3621 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3622 // PACKAGE: The package name of the app that was granted the permission
3623 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3624
3625 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3626 // PACKAGE: The package name of the app requesting the permission
3627 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3628
3629 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3630 // PACKAGE: The package name of the app the permission was revoked for
3631 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3632
3633 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3634 // PACKAGE: The package name of the app requesting the permission
3635 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3636
3637 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3638 // PACKAGE: The package name of the app that was granted the permission
3639 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3640
3641 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3642 // PACKAGE: The package name of the app requesting the permission
3643 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3644
3645 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3646 // PACKAGE: The package name of the app the permission was revoked for
3647 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3648
3649 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3650 // PACKAGE: The package name of the app requesting the permission
3651 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3652
3653 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3654 // PACKAGE: The package name of the app that was granted the permission
3655 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3656
3657 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3658 // PACKAGE: The package name of the app requesting the permission
3659 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3660
3661 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3662 // PACKAGE: The package name of the app the permission was revoked for
3663 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3664
3665 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3666 // PACKAGE: The package name of the app requesting the permission
3667 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3668
3669 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3670 // PACKAGE: The package name of the app that was granted the permission
3671 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3672
3673 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3674 // PACKAGE: The package name of the app requesting the permission
3675 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3676
3677 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3678 // PACKAGE: The package name of the app the permission was revoked for
3679 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3680
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003681 // ACTION: Phase 1 of instant application resolution occurred
3682 // OS: O
3683 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3684
3685 // ACTION: Phase 2 of instant application resolution occurred
3686 // OS: O
3687 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3688
3689 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3690 // OS: O
3691 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3692
3693 // FIELD: The status of an ephemeral resolution phase
3694 // Value 0: success
3695 // Value 1: no full hash match
3696 // OS: O
3697 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3698
3699 // FIELD - A token to identify all events that are part of the same instant application launch
3700 // OS: O
3701 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3702
3703 // FIELD - The name of the package responsible for launching the activity
3704 // OS: O
3705 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3706
3707 // FIELD - Whether or not the launched activity is part of an instant application
3708 // OS: O
3709 APP_TRANSITION_IS_EPHEMERAL = 905;
3710
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003711 // An autofill session was started
3712 // Package: Package of app that is autofilled
3713 AUTOFILL_SESSION_STARTED = 906;
3714
3715 // An autofill request was processed by a service
3716 // Type TYPE_SUCCESS: The request succeeded
3717 // Type TYPE_FAILURE: The request failed
3718 // Package: Package of app that is autofilled
3719 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3720 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3721 AUTOFILL_REQUEST = 907;
3722
3723 // Tag of a field for a package of an autofill service
3724 FIELD_AUTOFILL_SERVICE = 908;
3725
3726 // Tag of a field for the number of datasets
3727 FIELD_AUTOFILL_NUM_DATASETS = 909;
3728
3729 // An autofill dataset selection UI was shown
3730 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3731 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3732 // Type TYPE_ACTION: dataset was selected
3733 // Type TYPE_DETAIL: authentication was selected
3734 // Package: Package of app that was autofilled
3735 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3736 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3737 AUTOFILL_FILL_UI = 910;
3738
3739 // Tag of a field for the length of the filter text
3740 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3741
3742 // An autofill authentification succeeded
3743 // Package: Package of app that was autofilled
3744 AUTOFILL_AUTHENTICATED = 912;
3745
3746 // An activity was autofilled and all values could be applied
3747 // Package: Package of app that is autofilled
3748 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3749 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3750 AUTOFILL_DATASET_APPLIED = 913;
3751
3752 // Tag of a field for the number values to be filled in
3753 FIELD_AUTOFILL_NUM_VALUES = 914;
3754
3755 // Tag of a field for the number of views that were filled
3756 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3757
3758 // An autofill save UI was shown
3759 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3760 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3761 // Type TYPE_ACTION: data was saved
3762 // Package: Package of app that was autofilled
3763 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3764 AUTOFILL_SAVE_UI = 916;
3765
3766 // Tag of a field for the number of saveable ids
3767 FIELD_AUTOFILL_NUM_IDS = 917;
3768
3769 // ACTION: An autofill service was reqiested to save data
3770 // Type TYPE_SUCCESS: The request succeeded
3771 // Type TYPE_FAILURE: The request failed
3772 // Package: Package of app that was autofilled
3773 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3774 AUTOFILL_DATA_SAVE_REQUEST = 918;
3775
3776 // An auto-fill session was finished
3777 // Package: Package of app that was autofilled
3778 AUTOFILL_SESSION_FINISHED = 919;
3779
Chris Wren148805582017-03-17 17:18:11 -04003780 // meta-event: a reader has checkpointed the log here.
3781 METRICS_CHECKPOINT = 920;
3782
Fan Zhanged1845f2017-03-23 14:46:59 -07003783 // OPEN: Settings -> Display -> When in VR Mode
3784 VR_DISPLAY_PREFERENCE = 921;
3785
Chris Wren26ca65d2016-11-29 10:43:28 -05003786 // ---- End O Constants, all O constants go above this line ----
3787
Adrian Roos159ef7b2016-02-25 11:58:32 -08003788 // Add new aosp constants above this line.
3789 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05003790 }
3791}