blob: 639527d71bb1824382ecf49153192bec05019de4 [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
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700100 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
101 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
102 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500103 // CATEGORY: SETTINGS
104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500105 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500106
107 // OPEN: Settings > Accounts
108 // CATEGORY: SETTINGS
109 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500110 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500111
112 // OPEN: Settings > Accounts > [Single Account Sync Settings]
113 // CATEGORY: SETTINGS
114 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500115 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500116
117 // OPEN: Settings > Accounts > Add an account
118 // CATEGORY: SETTINGS
119 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500120 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500121
122 // OPEN: Settings > Accounts > [List of accounts when more than one]
123 // CATEGORY: SETTINGS
124 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500125 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500126
127 // OPEN: Settings > Cellular network settings > APNs
128 // CATEGORY: SETTINGS
129 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500130 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500131
132 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
133 // CATEGORY: SETTINGS
134 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500135 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500136
137 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500138 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500139
140 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500141 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500142
143 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500144 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500145
146 // OPEN: Settings > Apps > Configure apps > App links > [App]
147 // CATEGORY: SETTINGS
148 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500149 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500150
151 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500152 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500153
154 // OPEN: Settings > Internal storage > Apps storage > [App]
155 // CATEGORY: SETTINGS
156 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500157 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500158
159 // OPEN: Settings > Apps > [App info]
160 // CATEGORY: SETTINGS
161 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500162 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500163
164 // OPEN: Settings > Memory > App usage > [App Memory usage]
165 // CATEGORY: SETTINGS
166 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500167 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500168
169 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500170 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500171
172 // OPEN: Settings > Memory > App usage
173 // CATEGORY: SETTINGS
174 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500175 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500176
177 // OPEN: Settings > Bluetooth
178 // CATEGORY: SETTINGS
179 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500180 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500181
182 // OPEN: Choose Bluetooth device (ex: when sharing)
183 // CATEGORY: SETTINGS
184 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500185 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500186
187 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500188 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500189
190 // OPEN: Settings > Security > Choose screen lock
191 // CATEGORY: SETTINGS
192 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500193 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500194
195 // OPEN: Settings > Security > Choose screen lock > Choose your password
196 // CATEGORY: SETTINGS
197 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500198 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500199
200 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
201 // CATEGORY: SETTINGS
202 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500203 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500204
205 // OPEN: Settings > Security > Choose screen lock > Confirm your password
206 // CATEGORY: SETTINGS
207 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500208 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500209
210 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
211 // CATEGORY: SETTINGS
212 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500213 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500214
215 // OPEN: Settings > Security > Encrypt phone
216 // CATEGORY: SETTINGS
217 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500218 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500219
220 // OPEN: Settings > Security > Encrypt phone > Confirm
221 // CATEGORY: SETTINGS
222 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500223 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500224
225 // OPEN: Settings > Search results
226 // CATEGORY: SETTINGS
227 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500228 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500229
230 // OPEN: Settings (Root page)
231 // CATEGORY: SETTINGS
232 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500233 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500234
235 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500236 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500237
238 // OPEN: Settings > Data usage
239 // CATEGORY: SETTINGS
240 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500241 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500242
243 // OPEN: Settings > Date & time
244 // CATEGORY: SETTINGS
245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500246 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500247
248 // OPEN: Settings > Developer options
249 // CATEGORY: SETTINGS
250 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500251 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500252
253 // OPEN: Settings > About phone
254 // CATEGORY: SETTINGS
255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500256 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OPEN: Settings > About phone > Status > IMEI information
259 // CATEGORY: SETTINGS
260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500261 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500262
263 // OPEN: Settings > Internal storage
264 // CATEGORY: SETTINGS
265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500266 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500267
268 // OPEN: Settings > About phone > Status > SIM status
269 // CATEGORY: SETTINGS
270 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500271 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500272
273 // OPEN: Settings > About phone > Status
274 // CATEGORY: SETTINGS
275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500276 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500277
278 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500279 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OPEN: Settings > Display
282 // CATEGORY: SETTINGS
283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500284 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OPEN: Settings > Display > Daydream
287 // CATEGORY: SETTINGS
288 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500289 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500290
291 // OPEN: Settings > Security > Screen lock > Secure start-up
292 // CATEGORY: SETTINGS
293 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500294 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500295
296 // OPEN: Settings > Security > Nexus Imprint
297 // CATEGORY: SETTINGS
298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500299 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500300
301 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500302 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500303
304 // OPEN: Settings > Battery > History details
305 // CATEGORY: SETTINGS
306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500307 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500308
309 // OPEN: Settings > Battery > Battery saver
310 // CATEGORY: SETTINGS
311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500312 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500313
314 // OPEN: Settings > Battery > [App Use details]
315 // CATEGORY: SETTINGS
316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500317 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500318
319 // OPEN: Settings > Battery
320 // CATEGORY: SETTINGS
321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500322 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings > Home
325 // CATEGORY: SETTINGS
326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500327 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OPEN: Settings > Security > SIM card lock settings
330 // CATEGORY: SETTINGS
331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500332 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500333
334 // OPEN: Settings > Language & input
335 // CATEGORY: SETTINGS
336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500337 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OPEN: Settings > Language & input > Physical keyboard
340 // CATEGORY: SETTINGS
341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500342 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings > Language & input > Spell checker
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500350 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500351
352 // OPEN: Settings > Language & input > Personal dictionary
353 // CATEGORY: SETTINGS
354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500355 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500356
357 // OPEN: Settings > Language & input > Add word
358 // CATEGORY: SETTINGS
359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500360 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500361
362 // OPEN: Settings > Location
363 // CATEGORY: SETTINGS
364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500365 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500366
367 // OPEN: Settings > Location > Location mode
368 // CATEGORY: SETTINGS
369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500370 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500371
372 // OPEN: Settings > Apps
373 // CATEGORY: SETTINGS
374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500375 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500376
377 // OPEN: Settings > Backup & reset > Factory data reset
378 // CATEGORY: SETTINGS
379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500380 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500381
382 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
383 // CATEGORY: SETTINGS
384 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500385 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > Data usage > Network restrictions
388 // CATEGORY: SETTINGS
389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500390 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500391
392 // OPEN: Settings > More > Android Beam
393 // CATEGORY: SETTINGS
394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500395 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500396
397 // OPEN: Settings > Tap & pay
398 // CATEGORY: SETTINGS
399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500400 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500401
402 // OPEN: Settings > Sound & notification
403 // CATEGORY: SETTINGS
404 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500405 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500406
407 // OPEN: Settings > Sound & notification > App notifications > [App]
408 // CATEGORY: SETTINGS
409 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500410 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500411
412 // OPEN: Settings > Sound & notification > Other sounds
413 // CATEGORY: SETTINGS
414 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500415 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500416
417 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500418 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500419
420 // OPEN: Settings Widget > Notification log
421 // CATEGORY: SETTINGS
422 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500423 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500424
425 // OPEN: Settings > Sound & notification > Do not disturb
426 // CATEGORY: SETTINGS
427 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500428 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500429
430 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500431 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500432
433 // OPEN: Print job notification > Print job settings
434 // CATEGORY: SETTINGS
435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500436 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500437
438 // OPEN: Settings > Printing > [Print Service]
439 // CATEGORY: SETTINGS
440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500441 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500442
443 // OPEN: Settings > Printing
444 // CATEGORY: SETTINGS
445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500446 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500447
448 // OPEN: Settings > Backup & reset
449 // CATEGORY: SETTINGS
450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500451 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500454 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500455
456 // OPEN: Settings > Backup & reset > Network settings reset
457 // CATEGORY: SETTINGS
458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500459 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500460
461 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
462 // CATEGORY: SETTINGS
463 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500464 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500465
466 // OPEN: Settings > Developer Options > Running Services
467 // CATEGORY: SETTINGS
468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500469 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500470
471 // OPEN: Settings > Security > Screen pinning
472 // CATEGORY: SETTINGS
473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500474 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500475
476 // OPEN: Settings > Security
477 // CATEGORY: SETTINGS
478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500479 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500480
481 // OPEN: Settings > SIM cards
482 // CATEGORY: SETTINGS
483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500484 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500487 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500488
489 // OPEN: Settings > More > Tethering & portable hotspot
490 // CATEGORY: SETTINGS
491 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500492 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500493
494 // OPEN: Settings > Security > Trust agents
495 // CATEGORY: SETTINGS
496 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500497 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500498
499 // OPEN: Settings > Security > Trusted credentials
500 // CATEGORY: SETTINGS
501 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500502 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500503
504 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
505 // CATEGORY: SETTINGS
506 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500507 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500508
509 // OPEN: Settings > Language & input > Text-to-speech output
510 // CATEGORY: SETTINGS
511 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500512 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500513
514 // OPEN: Settings > Security > Apps with usage access
515 // CATEGORY: SETTINGS
516 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500517 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500518
519 // OPEN: Settings > Users
520 // CATEGORY: SETTINGS
521 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500522 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500523
524 // OPEN: Settings > Users > [Restricted profile app & content access]
525 // CATEGORY: SETTINGS
526 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500527 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500528
529 // OPEN: Settings > Users > [User settings]
530 // CATEGORY: SETTINGS
531 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500532 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500533
534 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500535 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500536
537 // OPEN: Settings > More > VPN
538 // CATEGORY: SETTINGS
539 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500540 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500541
542 // OPEN: Settings > Display > Choose wallpaper from
543 // CATEGORY: SETTINGS
544 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500545 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500546
547 // OPEN: Settings > Display > Cast
548 // CATEGORY: SETTINGS
549 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500550 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500551
552 // OPEN: Settings > Wi-Fi
553 // CATEGORY: SETTINGS
554 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500555 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500556
557 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
558 // CATEGORY: SETTINGS
559 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500560 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500561
562 // OPEN: Settings > More > Wi-Fi Calling
563 // CATEGORY: SETTINGS
564 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500565 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500566
567 // OPEN: Settings > Wi-Fi > Saved networks
568 // CATEGORY: SETTINGS
569 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500570 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500571
572 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500573 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500576 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500577
578 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
579 // CATEGORY: SETTINGS
580 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500581 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500582
583 // OPEN: Settings > More
584 // CATEGORY: SETTINGS
585 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500586 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500587
588 // OPEN: Quick Settings Panel
589 // CATEGORY: QUICK_SETTINGS
590 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500591 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500592
593 // OPEN: QS Airplane mode tile shown
594 // ACTION: QS Airplane mode tile tapped
595 // SUBTYPE: 0 is off, 1 is on
596 // CATEGORY: QUICK_SETTINGS
597 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500598 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500599
600 // OPEN: QS Bluetooth tile shown
601 // ACTION: QS Bluetooth tile tapped
602 // SUBTYPE: 0 is off, 1 is on
603 // CATEGORY: QUICK_SETTINGS
604 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500605 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500606
607 // OPEN: QS Cast tile shown
608 // ACTION: QS Cast tile tapped
609 // CATEGORY: QUICK_SETTINGS
610 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500611 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500612
613 // OPEN: QS Cellular tile shown
614 // ACTION: QS Cellular tile tapped
615 // CATEGORY: QUICK_SETTINGS
616 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500617 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500618
619 // OPEN: QS Color inversion tile shown
620 // ACTION: QS Color inversion tile tapped
621 // SUBTYPE: 0 is off, 1 is on
622 // CATEGORY: QUICK_SETTINGS
623 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500624 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500625
626 // OPEN: QS Cellular tile > Cellular detail panel
627 // CATEGORY: QUICK_SETTINGS
628 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500629 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OPEN: QS Do not disturb tile shown
632 // ACTION: QS Do not disturb tile tapped
633 // SUBTYPE: 0 is off, 1 is on
634 // CATEGORY: QUICK_SETTINGS
635 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500636 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: QS Flashlight tile shown
639 // ACTION: QS Flashlight tile tapped
640 // SUBTYPE: 0 is off, 1 is on
641 // CATEGORY: QUICK_SETTINGS
642 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500643 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500644
645 // OPEN: QS Hotspot tile shown
646 // ACTION: QS Hotspot tile tapped
647 // SUBTYPE: 0 is off, 1 is on
648 // CATEGORY: QUICK_SETTINGS
649 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500650 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500651
652 // OPEN: QS 3P tile shown
653 // ACTION: QS 3P tile tapped
654 // CATEGORY: QUICK_SETTINGS
655 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500656 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500657
658 // OPEN: QS Location tile shown
659 // ACTION: QS Location tile tapped
660 // SUBTYPE: 0 is off, 1 is on
661 // CATEGORY: QUICK_SETTINGS
662 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500663 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500664
665 // OPEN: QS Rotation tile shown
666 // ACTION: QS Rotation tile tapped
667 // SUBTYPE: 0 is off, 1 is on
668 // CATEGORY: QUICK_SETTINGS
669 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500670 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500673 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500674
675 // OPEN: QS User list panel
676 // CATEGORY: QUICK_SETTINGS
677 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500678 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500679
680 // OPEN: QS WiFi tile shown
681 // ACTION: QS WiFi tile tapped
682 // SUBTYPE: 0 is off, 1 is on
683 // CATEGORY: QUICK_SETTINGS
684 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500685 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500686
687 // OPEN: Notification Panel (including lockscreen)
688 // CATEGORY: NOTIFICATION
689 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500690 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500691
692 // OPEN: Notification in panel became visible.
693 // PACKAGE: App that posted the notification.
694 // ACTION: Notification is tapped.
695 // PACKAGE: App that posted the notification
696 // DETAIL: Notification is expanded by user.
697 // PACKAGE: App that posted the notification
698 // DISMISS: Notification is dismissed.
699 // PACKAGE: App that posted the notification
700 // SUBTYPE: Dismiss reason from NotificationManagerService.java
701 // CATEGORY: NOTIFICATION
702 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500703 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500704
705 // ACTION: User tapped notification action
706 // PACKAGE: App that posted the notification
707 // SUBTYPE: Index of action on notification
708 // CATEGORY: NOTIFICATION
709 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500710 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500711
712 // OPEN: Settings > Apps > Configure apps > App permissions
713 // CATEGORY: SETTINGS
714 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500715 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500716
717 // OPEN: Settings > Location > Scanning
718 // CATEGORY: SETTINGS
719 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500720 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500721
722 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500723 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500724
725 // OPEN: Settings > Sound & notification > App notifications
726 // CATEGORY: SETTINGS
727 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500728 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500729
730 // ACTION: Settings > Wi-Fi > Overflow > Add Network
731 // CATEGORY: SETTINGS
732 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500733 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500734
735 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700736 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500737 // CATEGORY: SETTINGS
738 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500739 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500740
741 // ACTION: Settings > Wi-Fi > Overflow > Refresh
742 // CATEGORY: SETTINGS
743 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500744 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500745
746 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
747 // CATEGORY: SETTINGS
748 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500749 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500750
751 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700752 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500753 // CATEGORY: SETTINGS
754 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500755 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500756
757 // ACTION: Settings > Wi-Fi > Toggle on
758 // CATEGORY: SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500763 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500764
765 // OPEN: Settings > Sound & notification > DND > Priority only allows
766 // CATEGORY: SETTINGS
767 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500768 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500769
770 // OPEN: Settings > Sound & notification > DND > Automatic rules
771 // CATEGORY: SETTINGS
772 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500773 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500774
775 // OPEN: Settings > Apps > Configure apps > App links
776 // CATEGORY: SETTINGS
777 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500778 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500779
780 // OPEN: Settings > Sound & notification > DND > [Time based rule]
781 // CATEGORY: SETTINGS
782 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500783 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500784
785 // OPEN: Settings > Sound & notification > DND > [External rule]
786 // CATEGORY: SETTINGS
787 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500788 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500789
790 // OPEN: Settings > Sound & notification > DND > [Event rule]
791 // CATEGORY: SETTINGS
792 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500793 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500794
795 // ACTION: App notification settings > Block Notifications
796 // CATEGORY: SETTINGS
797 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500798 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500799
800 // ACTION: Notification shade > Dismiss all button
801 // CATEGORY: NOTIFICATION
802 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500803 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500804
805 // OPEN: QS Do Not Disturb detail panel
806 // CATEGORY: QUICK_SETTINGS
807 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500808 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500809
810 // OPEN: QS Bluetooth detail panel
811 // CATEGORY: QUICK_SETTINGS
812 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500813 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500814
815 // OPEN: QS Cast detail panel
816 // CATEGORY: QUICK_SETTINGS
817 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500818 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500819
820 // OPEN: QS Wi-Fi detail panel
821 // CATEGORY: QUICK_SETTINGS
822 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500823 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500824
825 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
826 // SUBTYPE: 0 is off, 1 is on
827 // CATEGORY: QUICK_SETTINGS
828 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500829 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500830
831 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
832 // SUBTYPE: 0 is off, 1 is on
833 // CATEGORY: QUICK_SETTINGS
834 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500835 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500836
837 // ACTION: QS Cellular detail panel > Cellular toggle
838 // SUBTYPE: 0 is off, 1 is on
839 // CATEGORY: QUICK_SETTINGS
840 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500841 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500842
843 // ACTION: QS User list panel > Select different user
844 // CATEGORY: QUICK_SETTINGS
845 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500846 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500847
848 // ACTION: QS Cast detail panel > Select cast device
849 // CATEGORY: QUICK_SETTINGS
850 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500851 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500852
853 // ACTION: QS Cast detail panel > Disconnect cast device
854 // CATEGORY: QUICK_SETTINGS
855 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500856 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500857
858 // ACTION: Settings > Bluetooth > Toggle
859 // SUBTYPE: 0 is off, 1 is on
860 // CATEGORY: SETTINGS
861 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500862 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500863
864 // ACTION: Settings > Bluetooth > Overflow > Refresh
865 // CATEGORY: SETTINGS
866 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500867 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500868
869 // ACTION: Settings > Bluetooth > Overflow > Rename this device
870 // CATEGORY: SETTINGS
871 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500872 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // ACTION: Settings > Bluetooth > Overflow > Show received files
875 // CATEGORY: SETTINGS
876 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500877 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // ACTION: QS DND details panel > Increase / Decrease exit time
880 // SUBTYPE: true is increase, false is decrease
881 // CATEGORY: QUICK_SETTINGS
882 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500883 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500884
885 // ACTION: QS DND details panel > [Exit condition]
886 // CATEGORY: QUICK_SETTINGS
887 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500888 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500889
890 // ACTION: QS DND details panel > [DND mode]
891 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
892 // CATEGORY: QUICK_SETTINGS
893 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500894 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500895
896 // ACTION: QS DND detail panel > DND toggle
897 // SUBTYPE: 0 is off, 1 is on
898 // CATEGORY: QUICK_SETTINGS
899 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500900 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500901
902 // ACTION: DND Settings > Priority only allows > Reminder toggle
903 // SUBTYPE: 0 is off, 1 is on
904 // CATEGORY: SETTINGS
905 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500906 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500907
908 // ACTION: DND Settings > Priority only allows > Event toggle
909 // SUBTYPE: 0 is off, 1 is on
910 // CATEGORY: SETTINGS
911 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500912 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // ACTION: DND Settings > Priority only allows > Messages
915 // SUBTYPE: 0 is off, 1 is on
916 // CATEGORY: SETTINGS
917 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500918 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -0500919
920 // ACTION: DND Settings > Priority only allows > Calls
921 // SUBTYPE: 0 is off, 1 is on
922 // CATEGORY: SETTINGS
923 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500924 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -0500925
926 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
927 // SUBTYPE: 0 is off, 1 is on
928 // CATEGORY: SETTINGS
929 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500930 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -0500931
932 // ACTION: DND Settings > Automatic rules > Add rule
933 // CATEGORY: SETTINGS
934 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500935 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -0500936
937 // ACTION: DND Settings > Automatic rules > Add rule > OK
938 // CATEGORY: SETTINGS
939 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500940 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -0500941
942 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
943 // CATEGORY: SETTINGS
944 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500945 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -0500946
947 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
948 // CATEGORY: SETTINGS
949 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500950 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -0500951
952 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
953 // SUBTYPE: 0 is off, 1 is on
954 // CATEGORY: SETTINGS
955 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500956 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -0500957
958 // ACTION: Settings > More > Airplane mode toggle
959 // SUBTYPE: 0 is off, 1 is on
960 // CATEGORY: SETTINGS
961 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500962 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -0500963
964 // ACTION: Settings > Data usage > Cellular data toggle
965 // SUBTYPE: 0 is off, 1 is on
966 // CATEGORY: SETTINGS
967 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500968 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -0500969
970 // OPEN: Settings > Sound & notification > Notification access
971 // CATEGORY: SETTINGS
972 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500973 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -0500974
975 // OPEN: Settings > Sound & notification > Do Not Disturb access
976 // CATEGORY: SETTINGS
977 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500978 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -0500979
980 // OPEN: Settings > Apps > Configure apps > Default Apps
981 // CATEGORY: SETTINGS
982 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500983 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -0500984
985 // OPEN: Settings > Internal storage > Apps storage
986 // CATEGORY: SETTINGS
987 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500988 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -0500989
990 // OPEN: Settings > Security > Usage access
991 // CATEGORY: SETTINGS
992 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500993 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -0500994
995 // OPEN: Settings > Battery > Battery optimization
996 // CATEGORY: SETTINGS
997 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500998 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -0500999
1000 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001001 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001002
1003 // ACTION: Lockscreen > Unlock gesture
1004 // CATEGORY: GLOBAL_SYSTEM_UI
1005 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001006 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001007
1008 // ACTION: Lockscreen > Pull shade open
1009 // CATEGORY: GLOBAL_SYSTEM_UI
1010 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001011 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001012
1013 // ACTION: Lockscreen > Tap on lock, shows hint
1014 // CATEGORY: GLOBAL_SYSTEM_UI
1015 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001016 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001017
1018 // ACTION: Lockscreen > Camera
1019 // CATEGORY: GLOBAL_SYSTEM_UI
1020 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001021 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: Lockscreen > Dialer
1024 // CATEGORY: GLOBAL_SYSTEM_UI
1025 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001026 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001027
1028 // ACTION: Lockscreen > Tap on lock, locks phone
1029 // CATEGORY: GLOBAL_SYSTEM_UI
1030 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001031 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001032
1033 // ACTION: Lockscreen > Tap on notification, false touch rejection
1034 // CATEGORY: GLOBAL_SYSTEM_UI
1035 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001036 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001037
1038 // ACTION: Lockscreen > Swipe down to open quick settings
1039 // CATEGORY: GLOBAL_SYSTEM_UI
1040 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001041 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001042
1043 // ACTION: Swipe down to open quick settings when unlocked
1044 // CATEGORY: GLOBAL_SYSTEM_UI
1045 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001046 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001047
1048 // ACTION: Notification shade > Tap to open quick settings
1049 // CATEGORY: GLOBAL_SYSTEM_UI
1050 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001051 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001052
1053 // OPEN: Lockscreen
1054 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1055 // CATEGORY: GLOBAL_SYSTEM_UI
1056 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001057 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001058
1059 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1060 // CATEGORY: GLOBAL_SYSTEM_UI
1061 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001062 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001063
1064 // OPEN: Screen turned on
1065 // SUBTYPE: 2 is user action
1066 // CATEGORY: GLOBAL_SYSTEM_UI
1067 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001068 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001069
1070 // OPEN: Notification caused sound, vibration, and/or LED blink
1071 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1072 // CATEGORY: NOTIFICATION
1073 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001074 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001075
1076 // ACTION: Lockscreen > Emergency Call button
1077 // CATEGORY: GLOBAL_SYSTEM_UI
1078 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001079 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001080
1081 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1082 // CATEGORY: SETTINGS
1083 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001084 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001085
1086 // OPEN: Settings > Memory
1087 // CATEGORY: SETTINGS
1088 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001089 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001090
1091 // ACTION: Settings > Display > When device is rotated
1092 // CATEGORY: SETTINGS
1093 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001094 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001095
1096 // ACTION: Long press on notification to view controls
1097 // CATEGORY: NOTIFICATION
1098 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001099 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001100
1101 // ACTION: Notificatoin controls > Info button
1102 // CATEGORY: NOTIFICATION
1103 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001104 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001105
1106 // ACTION: Notification controls > Settings button
1107 // CATEGORY: NOTIFICATION
1108 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001109 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001110
1111 // OPEN: Volume Dialog (with hardware buttons)
1112 // CATEGORY: GLOBAL_SYSTEM_UI
1113 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001114 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001115
1116 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1117 // CATEGORY: GLOBAL_SYSTEM_UI
1118 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001119 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001120
1121 // ACTION: Volume dialog > Adjust volume slider
1122 // SUBTYPE: volume level (0-7)
1123 // CATEGORY: GLOBAL_SYSTEM_UI
1124 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001125 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001126
1127 // ACTION: Volume dialog > Select non-active stream
1128 // SUBTYPE: stream (defined in AudioSystem.java)
1129 // CATEGORY: GLOBAL_SYSTEM_UI
1130 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001131 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001132
1133 // ACTION: Adjust volume with hardware key
1134 // SUBTYPE: volume level (0-7)
1135 // CATEGORY: GLOBAL_SYSTEM_UI
1136 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001137 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001138
1139 // ACTION: Volume dialog > Mute a stream by tapping icon
1140 // SUBTYPE: mute is 1, audible is 2
1141 // CATEGORY: GLOBAL_SYSTEM_UI
1142 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001143 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001144
1145 // ACTION: Volume dialog > Change ringer mode by tapping icon
1146 // SUBTYPE: 2 is audible, 3 is vibrate
1147 // CATEGORY: GLOBAL_SYSTEM_UI
1148 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001149 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001150
1151 // ACTION: Chooser shown (share target, file open, etc.)
1152 // CATEGORY: GLOBAL_SYSTEM_UI
1153 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001154 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001155
1156 // ACTION: Chooser > User taps an app target
1157 // SUBTYPE: Index of target
1158 // CATEGORY: GLOBAL_SYSTEM_UI
1159 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001160 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // ACTION: Chooser > User taps a service target
1163 // SUBTYPE: Index of target
1164 // CATEGORY: GLOBAL_SYSTEM_UI
1165 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001166 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001167
1168 // ACTION: Chooser > User taps a standard target
1169 // SUBTYPE: Index of target
1170 // CATEGORY: GLOBAL_SYSTEM_UI
1171 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001172 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001173
1174 // ACTION: QS Brightness Slider (with auto brightness disabled)
1175 // SUBTYPE: slider value
1176 // CATEGORY: QUICK_SETTINGS
1177 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001178 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001179
1180 // ACTION: QS Brightness Slider (with auto brightness enabled)
1181 // SUBTYPE: slider value
1182 // CATEGORY: QUICK_SETTINGS
1183 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001184 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001185
1186 // OPEN: Settings > Display > Brightness Slider
1187 // CATEGORY: SETTINGS
1188 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001189 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001190
Christine Franks47175c32017-03-14 10:21:25 -07001191 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001192 // CATEGORY: SETTINGS
1193 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001194 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001195
1196 // OPEN: Display has entered dream mode
1197 // CATEGORY: GLOBAL_SYSTEM_UI
1198 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001199 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001200
1201 // OPEN: Display has entered ambient notification mode
1202 // CATEGORY: GLOBAL_SYSTEM_UI
1203 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001204 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001205
1206 // OPEN: Overview
1207 // CATEGORY: GLOBAL_SYSTEM_UI
1208 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001209 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001210
1211 // OPEN: Settings > About phone > Legal information
1212 // CATEGORY: SETTINGS
1213 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001214 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001215
1216 // OPEN: Settings > Search > Perform search
1217 // CATEGORY: SETTINGS
1218 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001219 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001220
1221 // OPEN: Settings > System UI Tuner
1222 // CATEGORY: SETTINGS
1223 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001224 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001225
1226 // OPEN: Settings > System UI Tuner > Quick Settings
1227 // CATEGORY: SETTINGS
1228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001229 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001230
1231 // OPEN: Settings > System UI Tuner > Demo mode
1232 // CATEGORY: SETTINGS
1233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001234 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001235
1236 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1237 // PACKAGE: Tile
1238 // CATEGORY: SETTINGS
1239 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001240 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001241
1242 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1243 // PACKAGE: Tile
1244 // CATEGORY: SETTINGS
1245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001246 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001247
1248 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1249 // PACKAGE: Tile
1250 // CATEGORY: SETTINGS
1251 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001252 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001253
1254 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1255 // PACKAGE: Icon
1256 // CATEGORY: SETTINGS
1257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001258 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1261 // PACKAGE: Icon
1262 // CATEGORY: SETTINGS
1263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001264 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001265
1266 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1267 // SUBTYPE: false is disabled, true is enabled
1268 // CATEGORY: SETTINGS
1269 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001270 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001271
1272 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1273 // SUBTYPE: false is disabled, true is enabled
1274 // CATEGORY: SETTINGS
1275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001276 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001277
1278 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1279 // SUBTYPE: 0 is disabled, 1 is enabled
1280 // CATEGORY: SETTINGS
1281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001282 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001283
1284 // OPEN: Settings > Developer options > Inactive apps
1285 // CATEGORY: SETTINGS
1286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001287 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001288
1289 // ACTION: Long press home to bring up assistant
1290 // CATEGORY: GLOBAL_SYSTEM_UI
1291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001292 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001293
1294 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1295 // CATEGORY: SETTINGS
1296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001297 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001298
1299 // OPEN: Fingerprint Enroll > Find Sensor
1300 // CATEGORY: SETTINGS
1301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001302 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001303
1304 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1305 // CATEGORY: SETTINGS
1306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001307 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001308
1309 // OPEN: Fingerprint Enroll introduction
1310 // CATEGORY: SETTINGS
1311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001312 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001313
1314 // OPEN: Fingerprint Enroll onboarding
1315 // CATEGORY: SETTINGS
1316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001317 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001318
1319 // OPEN: Fingerprint Enroll > Let's Start!
1320 // CATEGORY: SETTINGS
1321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001322 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001323
1324 // OPEN: Fingerprint Enroll SUW > Let's Start!
1325 // CATEGORY: SETTINGS
1326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001327 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001328
1329 // OPEN: Fingerprint Enroll SUW > Find Sensor
1330 // CATEGORY: SETTINGS
1331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001332 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001333
1334 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1335 // CATEGORY: SETTINGS
1336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001337 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001338
1339 // OPEN: Fingerprint Enroll SUW introduction
1340 // CATEGORY: SETTINGS
1341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001342 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001343
1344 // OPEN: Fingerprint Enroll SUW onboarding
1345 // CATEGORY: SETTINGS
1346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001347 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001348
1349 // ACTION: Add fingerprint > Enroll fingerprint
1350 // CATEGORY: SETTINGS
1351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001352 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001353
1354 // ACTION: Authenticate using fingerprint
1355 // CATEGORY: SETTINGS
1356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001357 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001358
1359 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1360 // CATEGORY: SETTINGS
1361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001362 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001363
1364 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1365 // CATEGORY: SETTINGS
1366 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001367 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001368
1369 // ACTION: Double tap camera shortcut
1370 // CATEGORY: GLOBAL_SYSTEM_UI
1371 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001372 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001373
1374 // ACTION: Double twist camera shortcut
1375 // CATEGORY: GLOBAL_SYSTEM_UI
1376 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001377 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001378
1379 // OPEN: QS Work Mode tile shown
1380 // ACTION: QS Work Mode tile tapped
1381 // SUBTYPE: 0 is off, 1 is on
1382 // CATEGORY: QUICK_SETTINGS
1383 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001384 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001385
1386 // OPEN: Settings > Developer Options > Background Check
1387 // CATEGORY: SETTINGS
1388 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001389 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001390
1391 // OPEN: QS Lock tile shown
1392 // ACTION: QS Lock tile tapped
1393 // SUBTYPE: 0 is off, 1 is on
1394 // CATEGORY: QUICK_SETTINGS
1395 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001396 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // OPEN: QS User Tile shown
1399 // CATEGORY: QUICK_SETTINGS
1400 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001401 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // OPEN: QS Battery tile shown
1404 // CATEGORY: QUICK_SETTINGS
1405 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001406 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1409 // CATEGORY: SETTINGS
1410 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001411 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // ACTION: Visual interruptions > No screen interuptions toggle
1414 // SUBTYPE: 0 is off, 1 is on
1415 // CATEGORY: SETTINGS
1416 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001417 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001418
1419 // ACTION: Visual interruptions > No notification light toggle
1420 // SUBTYPE: 0 is off, 1 is on
1421 // CATEGORY: SETTINGS
1422 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001423 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001424
1425 // OPEN: Settings > Notifications > [App] > Topic Notifications
1426 // CATEGORY: SETTINGS
1427 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001428 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001429
1430 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1431 // PACKAGE: Selected SMS app
1432 // CATEGORY: SETTINGS
1433 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001434 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001435
1436 // OPEN: QS Color modification tile shown
1437 // ACTION: QS Color modification tile tapped
1438 // SUBTYPE: 0 is off, 1 is on
1439 // CATEGORY: QUICK_SETTINGS
1440 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001441 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // OPEN: QS Custom tile shown
1444 // ACTION: QS Work Mode tile tapped
1445 // CATEGORY: QUICK_SETTINGS
1446 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001447 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001448
1449 // ACTION: Visual interruptions > Never turn off the screen toggle
1450 // SUBTYPE: 0 is off, 1 is on
1451 // CATEGORY: SETTINGS
1452 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001453 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001454
Chris Wren7c516842016-03-01 16:44:32 -05001455 // ACTION: Overview > Long-press task, drag to enter split-screen
1456 // CATEGORY: GLOBAL_SYSTEM_UI
1457 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001458 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1459
Chris Wren7c516842016-03-01 16:44:32 -05001460 // ACTION: In App > Long-press Overview button to enter split-screen
1461 // CATEGORY: GLOBAL_SYSTEM_UI
1462 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001463 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1464
Chris Wren7c516842016-03-01 16:44:32 -05001465 // ACTION: In App > Swipe Overview button to enter split-screen
1466 // CATEGORY: GLOBAL_SYSTEM_UI
1467 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001468 ACTION_WINDOW_DOCK_SWIPE = 272;
1469
Chris Wren7c516842016-03-01 16:44:32 -05001470 // ACTION: Launch profile-specific app > Confirm credentials
1471 // CATEGORY: GLOBAL_SYSTEM_UI
1472 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001473 PROFILE_CHALLENGE = 273;
1474
Chris Wren7c516842016-03-01 16:44:32 -05001475 // OPEN: QS Battery detail panel
1476 // CATEGORY: GLOBAL_SYSTEM_UI
1477 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001478 QS_BATTERY_DETAIL = 274;
1479
Chris Wren7c516842016-03-01 16:44:32 -05001480 // OPEN: Overview > History
1481 // CATEGORY: GLOBAL_SYSTEM_UI
1482 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001483 OVERVIEW_HISTORY = 275;
1484
Chris Wren7c516842016-03-01 16:44:32 -05001485 // ACTION: Overview > Page by tapping Overview button
1486 // CATEGORY: GLOBAL_SYSTEM_UI
1487 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001488 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001489
Chris Wren7c516842016-03-01 16:44:32 -05001490 // ACTION: Overview > Select app
1491 // CATEGORY: GLOBAL_SYSTEM_UI
1492 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001493 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001494
Chris Wren7c516842016-03-01 16:44:32 -05001495 // ACTION: View emergency info
1496 // CATEGORY: GLOBAL_SYSTEM_UI
1497 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001498 ACTION_VIEW_EMERGENCY_INFO = 278;
1499
Chris Wren7c516842016-03-01 16:44:32 -05001500 // ACTION: Edit emergency info activity
1501 // CATEGORY: SETTINGS
1502 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001503 ACTION_EDIT_EMERGENCY_INFO = 279;
1504
Chris Wren7c516842016-03-01 16:44:32 -05001505 // ACTION: Edit emergency info field
1506 // CATEGORY: SETTINGS
1507 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001508 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1509
Chris Wren7c516842016-03-01 16:44:32 -05001510 // ACTION: Add emergency contact
1511 // CATEGORY: SETTINGS
1512 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001513 ACTION_ADD_EMERGENCY_CONTACT = 281;
1514
Chris Wren7c516842016-03-01 16:44:32 -05001515 // ACTION: Delete emergency contact
1516 // CATEGORY: SETTINGS
1517 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001518 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1519
Chris Wren7c516842016-03-01 16:44:32 -05001520 // ACTION: Call emergency contact
1521 // CATEGORY: SETTINGS
1522 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001523 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001524
Chris Wren7c516842016-03-01 16:44:32 -05001525 // OPEN: QS Data Saver tile shown
1526 // ACTION: QS Data Saver tile tapped
1527 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001528 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001529
Robin Lee8c1306e2016-02-01 11:37:02 +00001530 // OPEN: Settings > Security > User credentials
1531 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001532 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001533 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001534
Chris Wren7c516842016-03-01 16:44:32 -05001535 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1536 // CATEGORY: GLOBAL_SYSTEM_UI
1537 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001538 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001539
1540 // Logged when the user scrolls through overview manually
1541 OVERVIEW_SCROLL = 287;
1542
1543 // Logged when the overview times out automatically selecting an app
1544 OVERVIEW_SELECT_TIMEOUT = 288;
1545
1546 // Logged when a user dismisses a task in overview
1547 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001548
1549 // Logged when the user modifying the notification importance slider.
1550 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1551
1552 // Logged when the user saves a modification to notification importance. Negative numbers
1553 // indicate the user lowered the importance; positive means they increased it.
1554 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001555
Chris Wren7c516842016-03-01 16:44:32 -05001556 // ACTION: Long-press power button, then tap "Take bug report" option.
1557 // CATEGORY: GLOBAL_SYSTEM_UI
1558 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001559 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1560
Chris Wren7c516842016-03-01 16:44:32 -05001561 // ACTION: Long-press power button, then long-press "Take bug report" option.
1562 // CATEGORY: GLOBAL_SYSTEM_UI
1563 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001564 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1565
Chris Wren7c516842016-03-01 16:44:32 -05001566 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1567 // CATEGORY: SETTINGS
1568 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001569 // Interactive bug report initiated from Settings.
1570 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1571
Chris Wren7c516842016-03-01 16:44:32 -05001572 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1573 // CATEGORY: SETTINGS
1574 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001575 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001576 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1577
Chris Wren7c516842016-03-01 16:44:32 -05001578 // ACTION: User tapped notification action to cancel a bug report
1579 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001580 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001581 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1582
Chris Wren7c516842016-03-01 16:44:32 -05001583 // ACTION: User tapped notification action to launch bug report details screen
1584 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001585 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001586 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1587
Chris Wren7c516842016-03-01 16:44:32 -05001588 // ACTION: User tapped notification action to take adition screenshot on bug report
1589 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001590 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001591 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1592
Chris Wren7c516842016-03-01 16:44:32 -05001593 // ACTION: User tapped notification to share bug report
1594 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001595 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001596 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1597
Chris Wren7c516842016-03-01 16:44:32 -05001598 // ACTION: User changed bug report name using the details screen
1599 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001600 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001601 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1602
Chris Wren7c516842016-03-01 16:44:32 -05001603 // ACTION: User changed bug report title using the details screen
1604 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001605 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001606 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1607
Chris Wren7c516842016-03-01 16:44:32 -05001608 // ACTION: User changed bug report description using the details screen
1609 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001610 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001611 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1612
Chris Wren7c516842016-03-01 16:44:32 -05001613 // ACTION: User tapped Save in the bug report details screen.
1614 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001615 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001616 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1617
Chris Wren7c516842016-03-01 16:44:32 -05001618 // ACTION: User tapped Cancel in the bug report details screen.
1619 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001620 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001621 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001622
1623 // Tuner: Open/close calibrate dialog.
1624 TUNER_CALIBRATE_DISPLAY = 305;
1625
1626 // Tuner: Open/close color and appearance.
1627 TUNER_COLOR_AND_APPEARANCE = 306;
1628
1629 // Tuner: Apply calibrate dialog.
1630 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1631
1632 // Tuner: Open/close night mode.
1633 TUNER_NIGHT_MODE = 308;
1634
1635 // Tuner: Change night mode.
1636 ACTION_TUNER_NIGHT_MODE = 309;
1637
1638 // Tuner: Change night mode auto.
1639 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1640
1641 // Tuner: Change night mode adjust dark theme.
1642 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1643
1644 // Tuner: Change night mode adjust tint.
1645 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1646
1647 // Tuner: Change night mode adjust brightness.
1648 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1649
1650 // Tuner: Change do not disturb in volume panel.
1651 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1652
1653 // Tuner: Change do not disturb volume buttons shortcut.
1654 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001655
1656 // Logs the action the user takes when an app crashed.
1657 ACTION_APP_CRASH = 316;
1658
1659 // Logs the action the user takes when an app ANR'd.
1660 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001661
1662 // Logged when a user double taps the overview button to launch the previous task
1663 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001664
1665 // Logged when we execute an app transition. This indicates the total delay from startActivity
1666 // until the app transition is starting to animate, in milliseconds.
1667 APP_TRANSITION_DELAY_MS = 319;
1668
1669 // Logged when we execute an app transition. This indicates the reason why the transition
1670 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1671 APP_TRANSITION_REASON = 320;
1672
1673 // Logged when we execute an app transition and we drew a starting window. This indicates the
1674 // delay from startActivity until the starting window was drawn.
1675 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1676
1677 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1678 // the delay from startActivity until all windows have been drawn.
1679 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1680
1681 // Logged when we execute an app transition. This indicates the component name of the current
1682 // transition.
1683 APP_TRANSITION_COMPONENT_NAME = 323;
1684
1685 // Logged when we execute an app transition. This indicates whether the process was already
1686 // running.
1687 APP_TRANSITION_PROCESS_RUNNING = 324;
1688
1689 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1690 // the transition was executed.
1691 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001692
Chris Wren38f98812016-07-13 14:28:40 -04001693 // ACTION: app requested access to a scoped directory, user granted it.
1694 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1695 // CATEGORY: GLOBAL_SYSTEM_UI
1696 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001697 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1698
Chris Wren38f98812016-07-13 14:28:40 -04001699 // ACTION: app requested access to a scoped directory, user denied it.
1700 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1701 // CATEGORY: GLOBAL_SYSTEM_UI
1702 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001703 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1704
Chris Wren38f98812016-07-13 14:28:40 -04001705 // ACTION: app requested access to a scoped directory, user granted it.
1706 // PACKAGE: app that requested access
1707 // CATEGORY: GLOBAL_SYSTEM_UI
1708 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001709 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1710
Chris Wren38f98812016-07-13 14:28:40 -04001711 // ACTION: app requested access to a scoped directory, user denied it.
1712 // PACKAGE: app that requested access.
1713 // CATEGORY: GLOBAL_SYSTEM_UI
1714 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001715 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1716
Chris Wren38f98812016-07-13 14:28:40 -04001717 // ACTION: app requested access to a directory user has already been granted
1718 // access before.
1719 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1720 // CATEGORY: GLOBAL_SYSTEM_UI
1721 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001722 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1723
Chris Wren38f98812016-07-13 14:28:40 -04001724 // ACTION: app requested access to a directory user has already been granted
1725 // access before.
1726 // PACKAGE: app that requested access.
1727 // CATEGORY: GLOBAL_SYSTEM_UI
1728 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001729 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001730
Chris Wren38f98812016-07-13 14:28:40 -04001731 // ACTION: Logged when the user slides a notification and reveals the gear
1732 // beneath it.
1733 // CATEGORY: NOTIFICATION
1734 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001735 ACTION_REVEAL_GEAR = 332;
1736
Chris Wren38f98812016-07-13 14:28:40 -04001737 // ACTION: Logged when the user taps on the gear beneath a notification.
1738 // CATEGORY: NOTIFICATION
1739 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001740 ACTION_TOUCH_GEAR = 333;
1741
Ruben Brunke24b9a62016-02-16 21:38:24 -08001742 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001743 // CATEGORY: SETTINGS
1744 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001745 VR_MANAGE_LISTENERS = 334;
1746
Jason Monk6f5354d2016-03-08 14:18:08 -05001747 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001748 // CATEGORY: SETTINGS
1749 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001750 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001751
Jason Monk6f5354d2016-03-08 14:18:08 -05001752 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001753 // CATEGORY: SETTINGS
1754 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001755 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001756
Jason Monk6f5354d2016-03-08 14:18:08 -05001757 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001758 // CATEGORY: SETTINGS
1759 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001760 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001761
Jason Monk6f5354d2016-03-08 14:18:08 -05001762 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001763 // CATEGORY: SETTINGS
1764 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001765 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001766
Jason Monk6f5354d2016-03-08 14:18:08 -05001767 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001768 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001769 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001770
Jason Monk6f5354d2016-03-08 14:18:08 -05001771 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001772 // CATEGORY: SETTINGS
1773 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001774 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001775
Jason Monk6f5354d2016-03-08 14:18:08 -05001776 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001777 // CATEGORY: SETTINGS
1778 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001779 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001780
Jason Monk6f5354d2016-03-08 14:18:08 -05001781 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001782 // CATEGORY: SETTINGS
1783 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001784 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001785
Jason Monk6f5354d2016-03-08 14:18:08 -05001786 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001787 // CATEGORY: SETTINGS
1788 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001789 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001790
Jason Monk6f5354d2016-03-08 14:18:08 -05001791 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001792 // CATEGORY: SETTINGS
1793 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001794 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001795
Jason Monk6f5354d2016-03-08 14:18:08 -05001796 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001797 // CATEGORY: SETTINGS
1798 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001799 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001800
Jason Monk6f5354d2016-03-08 14:18:08 -05001801 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001802 // CATEGORY: SETTINGS
1803 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001804 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001805
Jason Monk6f5354d2016-03-08 14:18:08 -05001806 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001807 // CATEGORY: SETTINGS
1808 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001809 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001810
Jason Monk6f5354d2016-03-08 14:18:08 -05001811 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001812 // CATEGORY: SETTINGS
1813 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001814 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001815
Jason Monk6f5354d2016-03-08 14:18:08 -05001816 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001817 // CATEGORY: SETTINGS
1818 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001819 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1820
1821 // Used for generic logging of Settings Preference Persistence, should not be used
1822 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001823 // CATEGORY: SETTINGS
1824 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001825 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001826
Jason Monk6f5354d2016-03-08 14:18:08 -05001827 // Settings -> Apps -> Gear -> Special access
1828 SPECIAL_ACCESS = 351;
1829
Muyuan Lia2129992016-03-03 18:30:39 -08001830 // Logs that the user docks window via shortcut key.
1831 WINDOW_DOCK_SHORTCUTS = 352;
1832
Felipe Lemeadccb992016-03-09 17:40:49 -08001833 // User already denied access to the request folder; action takes an integer
1834 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001835 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001836 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1837
1838 // User already denied access to the request folder; action pass package name
1839 // of calling package.
1840 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1841
1842 // User denied access to the request folder and checked 'Do not ask again';
1843 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001844 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001845 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1846
1847 // User denied access to the request folder and checked 'Do not ask again';
1848 // action pass package name of calling package.
1849 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1850
Winson3b6ba1a2016-03-22 15:37:54 -07001851 // Logged when a user dismisses all task in overview
1852 OVERVIEW_DISMISS_ALL = 357;
1853
Jason Monk96defbe2016-03-29 16:51:03 -04001854 // Quick Settings -> Edit
1855 QS_EDIT = 358;
1856
1857 // Quick Settings -> Edit -> Overflow -> Reset
1858 ACTION_QS_EDIT_RESET = 359;
1859
1860 // QS -> Edit - Drag a tile out of the active tiles.
1861 // The _SPEC contains either the spec of the tile or
1862 // the package of the 3rd party app in the PKG field.
1863 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1864 ACTION_QS_EDIT_REMOVE = 361;
1865
1866 // QS -> Edit - Drag a tile into the active tiles.
1867 // The _SPEC contains either the spec of the tile or
1868 // the package of the 3rd party app in the PKG field.
1869 ACTION_QS_EDIT_ADD_SPEC = 362;
1870 ACTION_QS_EDIT_ADD = 363;
1871
1872 // QS -> Edit - Drag a tile within the active tiles.
1873 // The _SPEC contains either the spec of the tile or
1874 // the package of the 3rd party app in the PKG field.
1875 ACTION_QS_EDIT_MOVE_SPEC = 364;
1876 ACTION_QS_EDIT_MOVE = 365;
1877
1878 // Long-press on a QS tile. Tile spec in package field.
1879 ACTION_QS_LONG_PRESS = 366;
1880
Anna Galuszadad131f2016-03-22 13:49:02 -07001881 // OPEN: SUW Welcome Screen -> Vision Settings
1882 // CATEGORY: SETTINGS
1883 // OS: N
1884 SUW_ACCESSIBILITY = 367;
1885
Casey Burkhardtf4e98032017-03-22 22:52:24 -07001886 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
1887 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
1888 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07001889 // ACTION: New magnification gesture configuration is chosen
1890 // SUBTYPE: 0 is off, 1 is on
1891 // CATEGORY: SETTINGS
1892 // OS: N
1893 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1894
1895 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1896 // ACTION: New font size is chosen
1897 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1898 // CATEGORY: SETTINGS
1899 // OS: N
1900 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1901
1902 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1903 // ACTION: New display size is chosen
1904 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1905 // CATEGORY: SETTINGS
1906 // OS: N
1907 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1908
1909 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1910 // ACTION: New screen reader configuration is chosen
1911 // SUBTYPE: 0 is off, 1 is on
1912 // CATEGORY: SETTINGS
1913 // OS: N
1914 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
1915
Jason Monkc3620392016-03-30 15:46:03 -04001916 // ------- Begin N Settings conditionals -----
1917 // Conditionals are the green bars at the top of the settings dashboard
1918 // All conditionals will have visible/hide events onResume/onPause
1919 // but they will also be used as extra ints in the
1920 // dismiss/expand/collapse/click/button events
1921
1922 // swipe away conditional
1923 ACTION_SETTINGS_CONDITION_DISMISS = 372;
1924
1925 // click on collapsed conditional or clicks expand button
1926 ACTION_SETTINGS_CONDITION_EXPAND = 373;
1927
1928 // click collapse button on expanded conditional
1929 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
1930
1931 // click main area of expanded conditional
1932 ACTION_SETTINGS_CONDITION_CLICK = 375;
1933
1934 // click a direct button on expanded conditional
1935 ACTION_SETTINGS_CONDITION_BUTTON = 376;
1936
1937 // Airplane mode on
1938 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
1939 // AKA Data saver on
1940 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
1941 // Battery saver on
1942 SETTINGS_CONDITION_BATTERY_SAVER = 379;
1943 // Cellular data off
1944 SETTINGS_CONDITION_CELLULAR_DATA = 380;
1945 // Do not disturb on
1946 SETTINGS_CONDITION_DND = 381;
1947 // Hotspot on
1948 SETTINGS_CONDITION_HOTSPOT = 382;
1949 // Work profile off
1950 SETTINGS_CONDITION_WORK_MODE = 383;
1951
Jason Monk1b5d87b2016-03-30 16:03:15 -04001952 // ------- Begin N Settings suggestions -----
1953 // Since suggestions come from system apps, suggestions will
1954 // have generic constants and the package providing the suggestion
1955 // will be put in the package field. For suggestions in the Settings
1956 // package, the class name will be filled in instead (since settings
1957 // provides several suggetions).
1958
1959 // Settings shown/hidden on main settings dashboard.
1960 // These are actually visibility events, but visible/hidden doesn't
1961 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04001962 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
1963 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001964
1965 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04001966 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001967
1968 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04001969 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001970
Jason Monk397df682016-03-28 15:48:34 -04001971 // Settings > Apps > Gear > Special Access > Premium SMS access
1972 PREMIUM_SMS_ACCESS = 388;
1973
Jorim Jaggi29379ec2016-04-11 23:43:42 -07001974 // Logged when the user resizes the docked stack. Arguments:
1975 // 0: Split 50:50
1976 // 1: Docked smaller
1977 // 2: Docked larger
1978 ACTION_WINDOW_DOCK_RESIZE = 389;
1979
1980 // User exits split-screen by dragging the divider to the side of the screen. Arguments
1981 // 0: Docked gets maximized
1982 // 1: Fullscreen gets maximized
1983 ACTION_WINDOW_UNDOCK_MAX = 390;
1984
1985 // User tried to dock an unresizable app.
1986 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
1987
Julia Reynolds4d920ff2016-04-06 20:31:05 -04001988 // System UI Tuner > Other > Power notification controls
1989 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
1990
1991 // System UI Tuner > Other > Power notification controls > Toggle on/off
1992 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
1993
Chris Wren38f98812016-07-13 14:28:40 -04001994 // Action: user enable / disabled data saver using Settings
1995 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
1996 // VALUE: 1 for enabled, 0 for disabled
1997 // CATEGORY: SETTINGS
1998 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001999 ACTION_DATA_SAVER_MODE = 394;
2000
Chris Wren38f98812016-07-13 14:28:40 -04002001 // User whitelisted an app for Data Saver mode; action pass package name of app
2002 // Action: user enable / disabled data saver using Settings
2003 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2004 // or
2005 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2006 // VALUE: package name of APP
2007 // CATEGORY: SETTINGS
2008 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002009 ACTION_DATA_SAVER_WHITELIST = 395;
2010
Chris Wren38f98812016-07-13 14:28:40 -04002011 // User blacklisted an app for Data Saver mode; action pass package name of app
2012 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2013 // VALUE: package name of APP
2014 // CATEGORY: SETTINGS
2015 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002016 ACTION_DATA_SAVER_BLACKLIST = 396;
2017
Adrian Roosceeb04c2016-04-25 14:00:54 -07002018 // User opened a remote input view associated with a notification. Passes package name of app
2019 // that posted the notification. Note that this can also happen transiently during notification
2020 // reinflation.
2021 ACTION_REMOTE_INPUT_OPEN = 397;
2022
2023 // User attempt to send data through a remote input view associated with a notification.
2024 // Passes package name of app that posted the notification. May succeed or fail.
2025 ACTION_REMOTE_INPUT_SEND = 398;
2026
2027 // Failed attempt to send data through a remote input view associated with a
2028 // notification. Passes package name of app that posted the notification.
2029 ACTION_REMOTE_INPUT_FAIL = 399;
2030
2031 // User closed a remote input view associated with a notification. Passes package name of app
2032 // that posted the notification. Note that this can also happen transiently during notification
2033 // reinflation.
2034 ACTION_REMOTE_INPUT_CLOSE = 400;
2035
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002036 // OPEN: Settings > Accounts > Work profile settings
2037 // CATEGORY: SETTINGS
2038 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2039
Jason Monk25118d12016-05-10 13:25:50 -04002040 // Settings -> Dev options -> Convert to file encryption
2041 CONVERT_FBE = 402;
2042
2043 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2044 CONVERT_FBE_CONFIRM = 403;
2045
2046 // Settings -> Dev options -> Running services
2047 RUNNING_SERVICES = 404;
2048
Jason Monka1f697f2016-05-06 15:09:44 -04002049 // The dialog shown by 3P intent to change current webview implementation.
2050 WEBVIEW_IMPLEMENTATION = 405;
2051
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002052 // Settings launched from expanded quick settings.
2053 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2054
Chris Wren698b1702016-05-23 11:16:32 -04002055 // Notification expansion state toggled by the expand affordance.
2056 ACTION_NOTIFICATION_EXPANDER = 407;
2057
2058 // Notification group expansion state toggled by the expand affordance.
2059 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2060
Chris Wren7ee84182016-05-27 13:34:02 -04002061
Chris Wren6abeeb92016-05-26 14:44:38 -04002062 // Notification expansion state toggled by the expand gesture.
2063 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2064
2065 // Notification group expansion state toggled by the expand gesture.
2066 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2067
Bhavik Singh3451da42016-06-01 18:25:59 -07002068 // User performs gesture that activates the ambient display
2069 // 1: Gesture performed is Nudge
2070 // 2: Gesture performed is Pickup
2071 // 4: Gesture performed is Double Tap
2072 ACTION_AMBIENT_GESTURE = 411;
2073
Jason Monk9fa5f822016-05-11 10:26:31 -04002074 // ---- End N Constants, all N constants go above this line ----
2075
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002076 // ------- Begin N App Disambig Shade -----
2077 // Application disambig shade opened or closed with a featured app.
2078 // These are actually visibility events, but visible/hidden doesn't
2079 // take a package, so these are being logged as actions.
2080 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002081 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2082 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002083
2084 // Application disambig shade opened or closed without a featured app.
2085 // These are actually visibility events, but visible/hidden doesn't
2086 // take a package, so these are being logged as actions.
2087 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002088 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2089 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002090
2091 // User opens in an app by pressing “Always” in the application disambig shade.
2092 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002093 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002094
2095 // User opens in an app by pressing “Just Once” in the application disambig shade.
2096 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002097 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002098
2099 // User opens in an app by tapping on its name in the application disambig shade.
2100 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002101 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002102
Daniel Nishi010aa492016-05-11 09:42:24 -07002103 // OPEN: Settings > Internal storage > Storage manager
2104 // CATEGORY: SETTINGS
2105 STORAGE_MANAGER_SETTINGS = 458;
2106
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002107 // OPEN: Settings -> Gestures
2108 // CATEGORY: SETTINGS
2109 SETTINGS_GESTURES = 459;
2110
Daniel Nishi597e67f2016-05-18 13:56:13 -07002111 // ------ Begin Deletion Helper ------
2112 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2113 // SUBTYPE: false is off, true is on
2114 // CATEGORY: SETTINGS
2115 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002116
Daniel Nishi597e67f2016-05-18 13:56:13 -07002117 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2118 // SUBTYPE: false is off, true is on
2119 // CATEGORY: SETTINGS
2120 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2121
2122 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2123 // CATEGORY: SETTINGS
2124 // PACKAGE: Unchecked app
2125 ACTION_DELETION_SELECTION_APP_ON = 462;
2126
2127 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2128 // CATEGORY: SETTINGS
2129 // PACKAGE: Checked app
2130 ACTION_DELETION_SELECTION_APP_OFF = 463;
2131
2132 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2133 // SUBTYPE: false is expanded, true is collapsed
2134 // CATEGORY: SETTINGS
2135 ACTION_DELETION_APPS_COLLAPSED = 464;
2136
2137 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2138 // SUBTYPE: false is off, true is on
2139 // CATEGORY: SETTINGS
2140 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2141
2142 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2143 // SUBTYPE: false is expanded, true is collapsed
2144 // CATEGORY: SETTINGS
2145 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2146
2147 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2148 // CATEGORY: SETTINGS
2149 ACTION_DELETION_HELPER_CLEAR = 467;
2150
2151 // ACTION: Settings > Storage > Free Up Space > Cancel
2152 // CATEGORY: SETTINGS
2153 ACTION_DELETION_HELPER_CANCEL = 468;
2154
2155 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2156 // CATEGORY: SETTINGS
2157 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2158
2159 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2160 // CATEGORY: SETTINGS
2161 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2162
2163 // Deletion helper encountered an error during package deletion.
2164 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2165
2166 // Deletion helper encountered an error during downloads folder deletion.
2167 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2168
2169 // Deletion helper encountered an error during photo and video deletion.
2170 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2171
Fan Zhang5e956e82016-05-06 10:51:47 -07002172 // OPEN: Settings (root page if there are multiple tabs)
2173 // CATEGORY: SETTINGS
2174 DASHBOARD_CONTAINER = 474;
2175
2176 // OPEN: Settings -> SUPPORT TAB
2177 // CATEGORY: SETTINGS
2178 SUPPORT_FRAGMENT = 475;
2179
2180 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002181 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002182 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002183
2184 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002185 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002186 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2187
Fan Zhanga1985502016-06-16 16:48:38 -07002188 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002189 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002190 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2191
2192 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002193 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002194 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2195
2196 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002197 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002198 ACTION_SUPPORT_SIGN_IN = 480;
2199
2200 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002201 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002202 ACTION_SUPPORT_PHONE = 481;
2203
2204 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002205 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002206 ACTION_SUPPORT_CHAT = 482;
2207
2208 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002209 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002210 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2211
2212 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002213 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002214 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2215
Fan Zhang80807212016-06-30 12:26:55 -07002216 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002217 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002218 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2219
2220 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002221 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002222 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2223
2224 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002225 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002226 ACTION_SUPPORT_DIAL_TOLLED = 487;
2227
Justin Klaassen19494272016-07-18 21:38:24 -07002228 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002229 // CATEGORY: SETTINGS
2230 NIGHT_DISPLAY_SETTINGS = 488;
2231
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002232 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002233 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002234 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2235
Jason Monk484fd362016-07-13 15:24:32 -04002236 // Settings launched from collapsed quick settings.
2237 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2238
Justin Klaassen19494272016-07-18 21:38:24 -07002239 // OPEN: QS Night Light tile shown
2240 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002241 // SUBTYPE: 0 is off, 1 is on
2242 // CATEGORY: QUICK_SETTINGS
2243 QS_NIGHT_DISPLAY = 491;
2244
Justin Klaassen19494272016-07-18 21:38:24 -07002245 // Night Light on
2246 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2247
Doris Ling3c00afb2016-07-19 17:04:21 -07002248 // System navigation key up.
2249 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2250
2251 // System navigation key down.
2252 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2253
Doris Ling6dd3e462016-08-04 13:17:27 -07002254 // OPEN: Settings > Display -> Ambient Display
2255 // CATEGORY: SETTINGS
2256 ACTION_AMBIENT_DISPLAY = 495;
2257
Adrian Roos159ef7b2016-02-25 11:58:32 -08002258 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2259
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002260 // ACTION: The lockscreen gets shown because the SIM card was removed
2261 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2262 // CATEGORY: GLOBAL_SYSTEM_UI
2263 // OS: N-MR2
2264 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2265
2266 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2267
Clara Bayarric17a5982016-04-15 12:26:47 +01002268 // ------- Begin N Keyboard Shortcuts Helper -----
2269 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002270 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002271
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002272 // OPEN: Print Preview screen
2273 // Package: Package of app where print job is from
2274 PRINT_PREVIEW = 501;
2275
2276 // OPEN: User expands full print job options shade in print preview.
2277 PRINT_JOB_OPTIONS = 502;
2278
2279 // OPEN: “All Printers” screen for selecting printer
2280 // Subtype: # of printers listed
2281 PRINT_ALL_PRINTERS = 503;
2282
2283 // OPEN: “Add Printers” screen for adding printers
2284 // Subtype: # of enabled print service listed
2285 PRINT_ADD_PRINTERS = 504;
2286
2287 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2288 // Package: Package of print service.
2289 ACTION_PRINT = 505;
2290
2291 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2292 // Count all ACTION_PRINTER_SELECT_ALL actions.
2293 // Package: Package of print service tied to printer
2294 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2295
2296 // ACTION: User selects a printer from the “All printers” screen.
2297 // Package: Package of print service tied to printer
2298 ACTION_PRINTER_SELECT_ALL = 507;
2299
2300 // ACTION: User changes an option for the print job from print preview.
2301 // Subtype: 1: Copies
2302 // 2: Color mode
2303 // 3: Duplex mode
2304 // 4: Media (==Paper) size
2305 // 5: Orientation
2306 // 6: Page range
2307 // Package: Package of print service tied to printer
2308 ACTION_PRINT_JOB_OPTIONS = 508;
2309
2310 // ACTION: User searches for printer from All Printers
2311 ACTION_PRINTER_SEARCH = 509;
2312
2313 // ACTION: User selects “Add print service” button from All Printers
2314 ACTION_PRINT_SERVICE_ADD = 510;
2315
2316 // ACTION: User Enables/Disables Print Service via any means.
2317 // Subtype: 0: Enabled
2318 // 1: Disabled
2319 ACTION_PRINT_SERVICE_TOGGLE = 511;
2320
2321 // ACTION: User installs print recommended print service
2322 // Package: Package of print service
2323 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2324
Doris Ling88a6b162016-08-08 16:17:43 -07002325 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2326 // SUBTYPE: sub settings classname
2327 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2328
Fan Zhang92c60382016-08-08 14:03:53 -07002329 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2330 USER_DICTIONARY_SETTINGS = 514;
2331
2332 // OPEN: Settings > Date & time > Select time zone
2333 ZONE_PICKER = 515;
2334
2335 // OPEN: Settings > Security > Device administrators
2336 DEVICE_ADMIN_SETTINGS = 516;
2337
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002338 // ACTION: Managed provisioning was launched to set this package as DPC app.
2339 // PACKAGE: DPC's package name.
2340 PROVISIONING_DPC_PACKAGE_NAME = 517;
2341
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002342 // ACTION: Managed provisioning triggered DPC installation.
2343 // PACKAGE: Package name of package which installed DPC.
2344 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2345
2346 // ACTION: Logged when provisioning activity finishes.
2347 // TIME: Indicates time taken by provisioning activity to finish in MS.
2348 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2349
2350 // ACTION: Logged when preprovisioning activity finishes.
2351 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2352 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2353
2354 // ACTION: Logged when encrypt device activity finishes.
2355 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2356 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2357
2358 // ACTION: Logged when web activity finishes.
2359 // TIME: Indicates total time taken by web activity to finish in MS.
2360 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2361
2362 // ACTION: Logged when trampoline activity finishes.
2363 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2364 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2365
2366 // ACTION: Logged when encryption activity finishes.
2367 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2368 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2369
2370 // ACTION: Logged when finalization activity finishes.
2371 // TIME: Indicates time taken by finalization activity to finish in MS.
2372 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002373
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002374 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002375 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002376
Fan Zhang95094182016-08-24 18:14:16 -07002377 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002378 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002379
2380 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002381 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002382
2383 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002384 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002385
2386 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002387 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002388
2389 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002390 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002391
Fan Zhangc1352ae2016-09-16 12:46:11 -07002392 // OPEN: Settings > Security > Use one lock dialog
2393 DIALOG_UNIFICATION_CONFIRMATION = 532;
2394
2395 // OPEN: Settings > Security > User Credential
2396 DIALOG_USER_CREDENTIAL = 533;
2397
2398 // OPEN: Settings > Accounts > Remove account
2399 DIALOG_REMOVE_USER = 534;
2400
2401 // OPEN: Settings > Accounts > Confirm auto sync dialog
2402 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2403
2404 // OPEN: Settings > Apps > Dialog for running service details
2405 DIALOG_RUNNIGN_SERVICE = 536;
2406
2407 // OPEN: Settings > Dialog for hiding home settings
2408 DIALOG_NO_HOME = 537;
2409
2410 // OPEN: Settings > Bluetooth > Rename this device
2411 DIALOG_BLUETOOTH_RENAME = 538;
2412
2413 // OPEN: Settings > Bluetooth > Paired device profile
2414 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2415
2416 // OPEN: Settings > Battery optimization > details for app
2417 DIALOG_HIGH_POWER_DETAILS = 540;
2418
2419 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2420 DIALOG_KEYBOARD_LAYOUT = 541;
2421
2422 // OPEN: Settings > Wifi > WPS Setup dialog
2423 DIALOG_WPS_SETUP = 542;
2424
2425 // OPEN: Settings > WIFI Scan permission dialog
2426 DIALOG_WIFI_SCAN_MODE = 543;
2427
2428 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2429 DIALOG_WIFI_SKIP = 544;
2430
2431 // OPEN: Settings > Wireless > VPN > Config dialog
2432 DIALOG_LEGACY_VPN_CONFIG = 545;
2433
2434 // OPEN: Settings > Wireless > VPN > Config dialog for app
2435 DIALOG_VPN_APP_CONFIG = 546;
2436
2437 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2438 DIALOG_VPN_CANNOT_CONNECT = 547;
2439
2440 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2441 DIALOG_VPN_REPLACE_EXISTING = 548;
2442
2443 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2444 DIALOG_BILLING_CYCLE = 549;
2445
2446 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2447 DIALOG_BILLING_BYTE_LIMIT = 550;
2448
2449 // OPEN: Settings > Billing cycle > turn on data limit dialog
2450 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2451
2452 // OPEN: Settings > Service > Turn off notification access dialog
2453 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2454
2455 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2456 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2457
2458 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2459 DIALOG_ZEN_ACCESS_GRANT = 554;
2460
2461 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2462 DIALOG_ZEN_ACCESS_REVOKE = 555;
2463
2464 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2465 DIALOG_ZEN_TIMEPICKER = 556;
2466
2467 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2468 DIALOG_SERVICE_ACCESS_WARNING = 557;
2469
2470 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2471 DIALOG_APP_INFO_ACTION = 558;
2472
2473 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2474 DIALOG_VOLUME_FORGET = 559;
2475
2476 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2477 DIALOG_VOLUME_SLOW_WARNING = 560;
2478
2479 // OPEN: Settings > Storage > Dialog for initializing a volume
2480 DIALOG_VOLUME_INIT = 561;
2481
2482 // OPEN: Settings > Storage > Dialog for unmounting a volume
2483 DIALOG_VOLUME_UNMOUNT = 562;
2484
2485 // OPEN: Settings > Storage > Dialog for renaming a volume
2486 DIALOG_VOLUME_RENAME = 563;
2487
2488 // OPEN: Settings > Storage > Dialog for clear cache
2489 DIALOG_STORAGE_CLEAR_CACHE = 564;
2490
2491 // OPEN: Settings > Storage > Dialog for system info
2492 DIALOG_STORAGE_SYSTEM_INFO = 565;
2493
2494 // OPEN: Settings > Storage > Dialog for other info
2495 DIALOG_STORAGE_OTHER_INFO = 566;
2496
2497 // OPEN: Settings > Storage > Dialog for user info
2498 DIALOG_STORAGE_USER_INFO = 567;
2499
2500 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2501 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2502
2503 // OPEN: Settings > Add fingerprint > Error dialog
2504 DIALOG_FINGERPINT_ERROR = 569;
2505
2506 // OPEN: Settings > Fingerprint > Rename or delete dialog
2507 DIALOG_FINGERPINT_EDIT = 570;
2508
2509 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2510 DIALOG_FINGERPINT_DELETE_LAST = 571;
2511
2512 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2513 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2514
2515 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2516 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2517
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002518 // OPEN: Settings > Proxy Selector error dialog
2519 DIALOG_PROXY_SELECTOR_ERROR = 574;
2520
2521 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2522 DIALOG_WIFI_P2P_DISCONNECT = 575;
2523
2524 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2525 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2526
2527 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2528 DIALOG_WIFI_P2P_RENAME = 577;
2529
2530 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2531 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2532
2533 // OPEN: Settings > APN > Restore default dialog
2534 DIALOG_APN_RESTORE_DEFAULT = 579;
2535
2536 // OPEN: Settings > Dream > When to dream dialog
2537 DIALOG_DREAM_START_DELAY = 580;
2538
2539 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2540 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2541
2542 // OPEN: Settings > Tether > AP setting dialog
2543 DIALOG_AP_SETTINGS = 582;
2544
2545 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2546 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2547
2548 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2549 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2550
2551 // OPEN: Settings > Account > Remove account dialog
2552 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2553
2554 // OPEN: Settings > Account > Remove account failed dialog
2555 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2556
2557 // OPEN: Settings > Account > Cannot do onetime sync dialog
2558 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2559
2560 // OPEN: Settings > Display > Night light > Set start time dialog
2561 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2562
2563 // OPEN: Settings > Display > Night light > Set end time dialog
2564 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2565
2566 // OPEN: Settings > User > Edit info dialog
2567 DIALOG_USER_EDIT = 590;
2568
2569 // OPEN: Settings > User > Confirm remove dialog
2570 DIALOG_USER_REMOVE = 591;
2571
2572 // OPEN: Settings > User > Enable calling dialog
2573 DIALOG_USER_ENABLE_CALLING = 592;
2574
2575 // OPEN: Settings > User > Enable calling and sms dialog
2576 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2577
2578 // OPEN: Settings > User > Cannot manage device message dialog
2579 DIALOG_USER_CANNOT_MANAGE = 594;
2580
2581 // OPEN: Settings > User > Add user dialog
2582 DIALOG_USER_ADD = 595;
2583
2584 // OPEN: Settings > User > Setup user dialog
2585 DIALOG_USER_SETUP = 596;
2586
2587 // OPEN: Settings > User > Setup profile dialog
2588 DIALOG_USER_SETUP_PROFILE = 597;
2589
2590 // OPEN: Settings > User > Choose user type dialog
2591 DIALOG_USER_CHOOSE_TYPE = 598;
2592
2593 // OPEN: Settings > User > Need lockscreen dialog
2594 DIALOG_USER_NEED_LOCKSCREEN = 599;
2595
2596 // OPEN: Settings > User > Confirm exit guest mode dialog
2597 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2598
2599 // OPEN: Settings > User > Edit user profile dialog
2600 DIALOG_USER_EDIT_PROFILE = 601;
2601
2602 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2603 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2604
2605 // OPEN: Settings > Wifi > Edit AP dialog
2606 DIALOG_WIFI_AP_EDIT = 603;
2607
2608 // OPEN: Settings > Wifi > PBC Config dialog
2609 DIALOG_WIFI_PBC = 604;
2610
2611 // OPEN: Settings > Wifi > Display pin dialog
2612 DIALOG_WIFI_PIN = 605;
2613
2614 // OPEN: Settings > Wifi > Write config to NFC dialog
2615 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002616 // OPEN: Settings > Date > Date picker dialog
2617 DIALOG_DATE_PICKER = 607;
2618
2619 // OPEN: Settings > Date > Time picker dialog
2620 DIALOG_TIME_PICKER = 608;
2621
2622 // OPEN: Settings > Wireless > Manage wireless plan dialog
2623 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002624
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002625 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002626 PROVISIONING_NETWORK_TYPE = 610;
2627
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002628 // ACTION: Logs action which triggered provisioning.
2629 PROVISIONING_ACTION = 611;
2630
Mahaver Chopraab282072016-10-06 19:19:23 +01002631 // ACTION: Logs extra passed by the dpc while provisioning.
2632 PROVISIONING_EXTRA = 612;
2633
Salvador Martinez64867c12016-10-14 15:25:09 -07002634 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2635 BLUETOOTH_DIALOG_FRAGMENT = 613;
2636
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002637 // ACTION: Logs provisioning started by zero touch.
2638 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2639
2640 // ACTION: Logs provisioning started by NFC bump.
2641 PROVISIONING_ENTRY_POINT_NFC = 615;
2642
2643 // ACTION: Logs provisioning started using QR code.
2644 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2645
2646 // ACTION: Logs provisioning started using adb.
2647 PROVISIONING_ENTRY_POINT_ADB = 617;
2648
2649 // ACTION: Logs provisioning started by trusted source.
2650 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2651
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002652 // ACTION: Logged when copy account task finishes.
2653 // TIME: Indicates time taken by copy account task to finish in MS.
2654 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2655
2656 // ACTION: Logged when create profile task finishes.
2657 // TIME: Indicates time taken by create profile task to finish in MS.
2658 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2659
2660 // ACTION: Logged when start profile task finishes.
2661 // TIME: Indicates time taken by start profile task to finish in MS.
2662 PROVISIONING_START_PROFILE_TASK_MS = 621;
2663
2664 // ACTION: Logged when download package task finishes.
2665 // TIME: Indicates time taken by download package task to finish in MS.
2666 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2667
2668 // ACTION: Logged when install package task finishes.
2669 // TIME: Indicates time taken by install package task to finish in MS.
2670 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2671
2672 // ACTION: User cancelled provisioning.
2673 PROVISIONING_CANCELLED = 624;
2674
2675 // ACTION: Logged when provisioning throws an error.
2676 PROVISIONING_ERROR = 625;
2677
2678 // ACTION: Logs the status of copying user account during provisioning.
2679 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2680
2681 // ACTION: Logs the end to end time taken by all provisioning tasks.
2682 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2683
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002684 // OPEN: Settings > Privacy
2685 // CATEGORY: SETTINGS
2686 // OS: O
2687 ENTERPRISE_PRIVACY_SETTINGS = 628;
2688
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002689 // ACTION: Longpress on a TextView.
2690 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2691 // CATEGORY: TEXT_CONTROLS
2692 // OS: O
2693 TEXT_LONGPRESS = 629;
2694
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002695 // ACTION: An app requested an unknown permission
2696 // PACKAGE: The package name of the app requesting the permission
2697 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2698
2699 // ACTION: An app was granted an unknown permission
2700 // PACKAGE: The package name of the app that was granted the permission
2701 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2702
2703 // ACTION: An app requested an unknown permission and the request was denied
2704 // PACKAGE: The package name of the app requesting the permission
2705 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2706
2707 // ACTION: An unknown permission was revoked for an app
2708 // PACKAGE: The package name of the app the permission was revoked for
2709 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2710
2711 // ACTION: An app requested the permission READ_CALENDAR
2712 // PACKAGE: The package name of the app requesting the permission
2713 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2714
2715 // ACTION: An app was granted the permission READ_CALENDAR
2716 // PACKAGE: The package name of the app that was granted the permission
2717 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2718
2719 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2720 // PACKAGE: The package name of the app requesting the permission
2721 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2722
2723 // ACTION: The permission READ_CALENDAR was revoked for an app
2724 // PACKAGE: The package name of the app the permission was revoked for
2725 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2726
2727 // ACTION: An app requested the permission WRITE_CALENDAR
2728 // PACKAGE: The package name of the app requesting the permission
2729 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2730
2731 // ACTION: An app was granted the permission WRITE_CALENDAR
2732 // PACKAGE: The package name of the app that was granted the permission
2733 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2734
2735 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2736 // PACKAGE: The package name of the app requesting the permission
2737 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2738
2739 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2740 // PACKAGE: The package name of the app the permission was revoked for
2741 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2742
2743 // ACTION: An app requested the permission CAMERA
2744 // PACKAGE: The package name of the app requesting the permission
2745 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2746
2747 // ACTION: An app was granted the permission CAMERA
2748 // PACKAGE: The package name of the app that was granted the permission
2749 ACTION_PERMISSION_GRANT_CAMERA = 643;
2750
2751 // ACTION: An app requested the permission CAMERA and the request was denied
2752 // PACKAGE: The package name of the app requesting the permission
2753 ACTION_PERMISSION_DENIED_CAMERA = 644;
2754
2755 // ACTION: The permission CAMERA was revoked for an app
2756 // PACKAGE: The package name of the app the permission was revoked for
2757 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2758
2759 // ACTION: An app requested the permission READ_CONTACTS
2760 // PACKAGE: The package name of the app requesting the permission
2761 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2762
2763 // ACTION: An app was granted the permission READ_CONTACTS
2764 // PACKAGE: The package name of the app that was granted the permission
2765 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2766
2767 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2768 // PACKAGE: The package name of the app requesting the permission
2769 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2770
2771 // ACTION: The permission READ_CONTACTS was revoked for an app
2772 // PACKAGE: The package name of the app the permission was revoked for
2773 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2774
2775 // ACTION: An app requested the permission WRITE_CONTACTS
2776 // PACKAGE: The package name of the app requesting the permission
2777 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2778
2779 // ACTION: An app was granted the permission WRITE_CONTACTS
2780 // PACKAGE: The package name of the app that was granted the permission
2781 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2782
2783 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2784 // PACKAGE: The package name of the app requesting the permission
2785 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2786
2787 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2788 // PACKAGE: The package name of the app the permission was revoked for
2789 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2790
2791 // ACTION: An app requested the permission GET_ACCOUNTS
2792 // PACKAGE: The package name of the app requesting the permission
2793 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2794
2795 // ACTION: An app was granted the permission GET_ACCOUNTS
2796 // PACKAGE: The package name of the app that was granted the permission
2797 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2798
2799 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2800 // PACKAGE: The package name of the app requesting the permission
2801 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2802
2803 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2804 // PACKAGE: The package name of the app the permission was revoked for
2805 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2806
2807 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2808 // PACKAGE: The package name of the app requesting the permission
2809 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2810
2811 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2812 // PACKAGE: The package name of the app that was granted the permission
2813 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2814
2815 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2816 // PACKAGE: The package name of the app requesting the permission
2817 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2818
2819 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2820 // PACKAGE: The package name of the app the permission was revoked for
2821 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2822
2823 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2824 // PACKAGE: The package name of the app requesting the permission
2825 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2826
2827 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2828 // PACKAGE: The package name of the app that was granted the permission
2829 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2830
2831 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2832 // PACKAGE: The package name of the app requesting the permission
2833 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2834
2835 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2836 // PACKAGE: The package name of the app the permission was revoked for
2837 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2838
2839 // ACTION: An app requested the permission RECORD_AUDIO
2840 // PACKAGE: The package name of the app requesting the permission
2841 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2842
2843 // ACTION: An app was granted the permission RECORD_AUDIO
2844 // PACKAGE: The package name of the app that was granted the permission
2845 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2846
2847 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2848 // PACKAGE: The package name of the app requesting the permission
2849 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2850
2851 // ACTION: The permission RECORD_AUDIO was revoked for an app
2852 // PACKAGE: The package name of the app the permission was revoked for
2853 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2854
2855 // ACTION: An app requested the permission READ_PHONE_STATE
2856 // PACKAGE: The package name of the app requesting the permission
2857 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2858
2859 // ACTION: An app was granted the permission READ_PHONE_STATE
2860 // PACKAGE: The package name of the app that was granted the permission
2861 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2862
2863 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2864 // PACKAGE: The package name of the app requesting the permission
2865 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2866
2867 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2868 // PACKAGE: The package name of the app the permission was revoked for
2869 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2870
2871 // ACTION: An app requested the permission CALL_PHONE
2872 // PACKAGE: The package name of the app requesting the permission
2873 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2874
2875 // ACTION: An app was granted the permission CALL_PHONE
2876 // PACKAGE: The package name of the app that was granted the permission
2877 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2878
2879 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2880 // PACKAGE: The package name of the app requesting the permission
2881 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2882
2883 // ACTION: The permission CALL_PHONE was revoked for an app
2884 // PACKAGE: The package name of the app the permission was revoked for
2885 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2886
2887 // ACTION: An app requested the permission READ_CALL_LOG
2888 // PACKAGE: The package name of the app requesting the permission
2889 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2890
2891 // ACTION: An app was granted the permission READ_CALL_LOG
2892 // PACKAGE: The package name of the app that was granted the permission
2893 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2894
2895 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2896 // PACKAGE: The package name of the app requesting the permission
2897 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2898
2899 // ACTION: The permission READ_CALL_LOG was revoked for an app
2900 // PACKAGE: The package name of the app the permission was revoked for
2901 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2902
2903 // ACTION: An app requested the permission WRITE_CALL_LOG
2904 // PACKAGE: The package name of the app requesting the permission
2905 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
2906
2907 // ACTION: An app was granted the permission WRITE_CALL_LOG
2908 // PACKAGE: The package name of the app that was granted the permission
2909 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
2910
2911 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
2912 // PACKAGE: The package name of the app requesting the permission
2913 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
2914
2915 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
2916 // PACKAGE: The package name of the app the permission was revoked for
2917 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
2918
2919 // ACTION: An app requested the permission ADD_VOICEMAIL
2920 // PACKAGE: The package name of the app requesting the permission
2921 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
2922
2923 // ACTION: An app was granted the permission ADD_VOICEMAIL
2924 // PACKAGE: The package name of the app that was granted the permission
2925 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
2926
2927 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
2928 // PACKAGE: The package name of the app requesting the permission
2929 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
2930
2931 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
2932 // PACKAGE: The package name of the app the permission was revoked for
2933 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
2934
2935 // ACTION: An app requested the permission USE_SIP
2936 // PACKAGE: The package name of the app requesting the permission
2937 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
2938
2939 // ACTION: An app was granted the permission USE_SIP
2940 // PACKAGE: The package name of the app that was granted the permission
2941 ACTION_PERMISSION_GRANT_USE_SIP = 691;
2942
2943 // ACTION: An app requested the permission USE_SIP and the request was denied
2944 // PACKAGE: The package name of the app requesting the permission
2945 ACTION_PERMISSION_DENIED_USE_SIP = 692;
2946
2947 // ACTION: The permission USE_SIP was revoked for an app
2948 // PACKAGE: The package name of the app the permission was revoked for
2949 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
2950
2951 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
2952 // PACKAGE: The package name of the app requesting the permission
2953 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
2954
2955 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
2956 // PACKAGE: The package name of the app that was granted the permission
2957 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
2958
2959 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
2960 // PACKAGE: The package name of the app requesting the permission
2961 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
2962
2963 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
2964 // PACKAGE: The package name of the app the permission was revoked for
2965 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
2966
2967 // ACTION: An app requested the permission READ_CELL_BROADCASTS
2968 // PACKAGE: The package name of the app requesting the permission
2969 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
2970
2971 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
2972 // PACKAGE: The package name of the app that was granted the permission
2973 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
2974
2975 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
2976 // PACKAGE: The package name of the app requesting the permission
2977 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
2978
2979 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
2980 // PACKAGE: The package name of the app the permission was revoked for
2981 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
2982
2983 // ACTION: An app requested the permission BODY_SENSORS
2984 // PACKAGE: The package name of the app requesting the permission
2985 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
2986
2987 // ACTION: An app was granted the permission BODY_SENSORS
2988 // PACKAGE: The package name of the app that was granted the permission
2989 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
2990
2991 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
2992 // PACKAGE: The package name of the app requesting the permission
2993 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
2994
2995 // ACTION: The permission BODY_SENSORS was revoked for an app
2996 // PACKAGE: The package name of the app the permission was revoked for
2997 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
2998
2999 // ACTION: An app requested the permission SEND_SMS
3000 // PACKAGE: The package name of the app requesting the permission
3001 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3002
3003 // ACTION: An app was granted the permission SEND_SMS
3004 // PACKAGE: The package name of the app that was granted the permission
3005 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3006
3007 // ACTION: An app requested the permission SEND_SMS and the request was denied
3008 // PACKAGE: The package name of the app requesting the permission
3009 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3010
3011 // ACTION: The permission SEND_SMS was revoked for an app
3012 // PACKAGE: The package name of the app the permission was revoked for
3013 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3014
3015 // ACTION: An app requested the permission RECEIVE_SMS
3016 // PACKAGE: The package name of the app requesting the permission
3017 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3018
3019 // ACTION: An app was granted the permission RECEIVE_SMS
3020 // PACKAGE: The package name of the app that was granted the permission
3021 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3022
3023 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3024 // PACKAGE: The package name of the app requesting the permission
3025 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3026
3027 // ACTION: The permission RECEIVE_SMS was revoked for an app
3028 // PACKAGE: The package name of the app the permission was revoked for
3029 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3030
3031 // ACTION: An app requested the permission READ_SMS
3032 // PACKAGE: The package name of the app requesting the permission
3033 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3034
3035 // ACTION: An app was granted the permission READ_SMS
3036 // PACKAGE: The package name of the app that was granted the permission
3037 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3038
3039 // ACTION: An app requested the permission READ_SMS and the request was denied
3040 // PACKAGE: The package name of the app requesting the permission
3041 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3042
3043 // ACTION: The permission READ_SMS was revoked for an app
3044 // PACKAGE: The package name of the app the permission was revoked for
3045 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3046
3047 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3048 // PACKAGE: The package name of the app requesting the permission
3049 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3050
3051 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3052 // PACKAGE: The package name of the app that was granted the permission
3053 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3054
3055 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3056 // PACKAGE: The package name of the app requesting the permission
3057 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3058
3059 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3060 // PACKAGE: The package name of the app the permission was revoked for
3061 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3062
3063 // ACTION: An app requested the permission RECEIVE_MMS
3064 // PACKAGE: The package name of the app requesting the permission
3065 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3066
3067 // ACTION: An app was granted the permission RECEIVE_MMS
3068 // PACKAGE: The package name of the app that was granted the permission
3069 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3070
3071 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3072 // PACKAGE: The package name of the app requesting the permission
3073 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3074
3075 // ACTION: The permission RECEIVE_MMS was revoked for an app
3076 // PACKAGE: The package name of the app the permission was revoked for
3077 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3078
3079 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3080 // PACKAGE: The package name of the app requesting the permission
3081 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3082
3083 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3084 // PACKAGE: The package name of the app that was granted the permission
3085 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3086
3087 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3088 // PACKAGE: The package name of the app requesting the permission
3089 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3090
3091 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3092 // PACKAGE: The package name of the app the permission was revoked for
3093 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3094
3095 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3096 // PACKAGE: The package name of the app requesting the permission
3097 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3098
3099 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3100 // PACKAGE: The package name of the app that was granted the permission
3101 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3102
3103 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3104 // PACKAGE: The package name of the app requesting the permission
3105 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3106
3107 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3108 // PACKAGE: The package name of the app the permission was revoked for
3109 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3110
Mahaverfa6566e2016-11-29 21:08:14 +00003111 // ACTION: Logged when a provisioning session has started
3112 PROVISIONING_SESSION_STARTED = 734;
3113
3114 // ACTION: Logged when a provisioning session has completed
3115 PROVISIONING_SESSION_COMPLETED = 735;
3116
Chad Brubaker811825a2016-12-06 12:31:15 -08003117 // ACTION: An app requested the permission READ_PHONE_NUMBER
3118 // PACKAGE: The package name of the app requesting the permission
3119 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBER = 736;
3120
3121 // ACTION: An app was granted the permission READ_PHONE_NUMBER
3122 // PACKAGE: The package name of the app that was granted the permission
3123 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBER = 737;
3124
3125 // ACTION: An app requested the permission READ_PHONE_NUMBER and the request was denied
3126 // PACKAGE: The package name of the app requesting the permission
3127 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBER = 738;
3128
3129 // ACTION: The permission READ_PHONE_NUMBER was revoked for an app
3130 // PACKAGE: The package name of the app the permission was revoked for
3131 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBER = 739;
3132
Santos Cordon3107d292016-09-20 15:50:35 -07003133 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3134 // SUBTYPE: slider value
3135 // CATEGORY: QUICK_SETTINGS
3136 // OS: 6.0
3137 ACTION_BRIGHTNESS_FOR_VR = 498;
3138
Hugo Benichie1cbf152016-12-08 09:36:52 +09003139 // ACTION: A captive portal was detected during network validation
3140 // CATEGORY: NOTIFICATION
3141 // OS: N-MR2
3142 NOTIFICATION_NETWORK_SIGN_IN = 740;
3143
3144 // ACTION: An unvalidated network without Internet was selected by the user
3145 // CATEGORY: NOTIFICATION
3146 // OS: N-MR2
3147 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3148
3149 // ACTION: A validated network failed revalidation and lost Internet access
3150 // CATEGORY: NOTIFICATION
3151 // OS: N-MR2
3152 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3153
3154 // ACTION: The system default network switched to a different network
3155 // CATEGORY: NOTIFICATION
3156 // OS: N-MR2
3157 NOTIFICATION_NETWORK_SWITCH = 743;
3158
Fan Zhang074c4cb2016-12-21 12:10:33 -08003159 // OPEN: Settings > System
3160 SETTINGS_SYSTEM_CATEGORY = 744;
3161
3162 // OPEN: Settings > Storage
3163 SETTINGS_STORAGE_CATEGORY = 745;
3164
3165 // OPEN: Settings > Network & Internet
3166 SETTINGS_NETWORK_CATEGORY = 746;
3167
3168 // OPEN: Settings > Connected Device
3169 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3170
3171 // OPEN: Settings > App & Notification
3172 SETTINGS_APP_NOTIF_CATEGORY = 748;
3173
3174 // OPEN: Settings > System > Input & Gesture
3175 SETTINGS_INPUT_CATEGORY = 749;
3176
3177 // OPEN: Settings > System > Language & Region
3178 SETTINGS_LANGUAGE_CATEGORY = 750;
3179
3180 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3181 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3182
3183 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3184 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3185
3186 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3187 SETTINGS_GESTURE_PICKUP = 753;
3188
3189 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3190 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3191
3192 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3193 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3194
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003195 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3196 // CATEGORY: Settings
3197 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3198
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003199 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003200 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003201 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3202 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3203 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003204
Salvador Martinezc43ab062016-12-21 11:09:11 -08003205 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3206 // user accepted
3207 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003208
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003209 // Enclosing category for group of APP_TRANSITION_FOO events,
3210 // logged when we execute an app transition.
3211 APP_TRANSITION = 761;
3212
Fan Zhang945deea2017-01-11 16:37:49 -08003213 // ACTION: User leaves Settings search UI without entering any query.
3214 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3215
3216 // ACTION: Clicking on any search result in Settings.
3217 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003218
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003219 // ACTION: Allow Battery optimization for an app
3220 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3221
3222 // ACTION: Deny Battery optimization for an app
3223 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3224
3225 // ACTION: Enable Device Admin app
3226 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3227
3228 // ACTION: Disable Device Admin app
3229 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3230
3231 // ACTION: Allow "Do Not Disturb access" for an app
3232 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3233
3234 // ACTION: Deny "Do Not Disturb access" for an app
3235 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3236
3237 // ACTION: Allow "Draw over other apps" for an app
3238 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3239
Christine Franks47175c32017-03-14 10:21:25 -07003240 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003241 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3242
3243 // ACTION: Allow "VR helper services" for an app
3244 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3245
3246 // ACTION: Deny "VR helper services" for an app
3247 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3248
3249 // ACTION: Allow "Modify system settings" for an app
3250 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3251
3252 // ACTION: Deny "Modify system settings" for an app
3253 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3254
3255 // ACTION: Allow "Notification access" for an app
3256 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3257
3258 // ACTION: Deny "Notification access" for an app
3259 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3260
3261 // ACTION: "Premium SMS access" for an app - "ask user" option
3262 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3263
3264 // ACTION: "Premium SMS access" for an app - "never allow" option
3265 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3266
3267 // ACTION: "Premium SMS access" for an app - "always allow" option
3268 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3269
3270 // ACTION: Allow "Unrestricted data access" for an app
3271 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3272
3273 // ACTION: Deny "Unrestricted data access" for an app
3274 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3275
3276 // ACTION: Allow "Usage access" for an app
3277 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3278
3279 // ACTION: Deny "Usage access" for an app
3280 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3281
Fan Zhangad5dacc2017-01-18 14:18:54 -08003282 // OPEN: Settings > Apps > Default Apps > Default browser
3283 DEFAULT_BROWSER_PICKER = 785;
3284
3285 // OPEN: Settings > Apps > Default Apps > Default emergency app
3286 DEFAULT_EMERGENCY_APP_PICKER = 786;
3287
3288 // OPEN: Settings > Apps > Default Apps > Default home
3289 DEFAULT_HOME_PICKER = 787;
3290
3291 // OPEN: Settings > Apps > Default Apps > Default phone
3292 DEFAULT_PHONE_PICKER = 788;
3293
3294 // OPEN: Settings > Apps > Default Apps > Default sms
3295 DEFAULT_SMS_PICKER = 789;
3296
3297 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3298 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3299
3300 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3301 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3302
Jason Long1b51da62017-01-24 11:35:31 -08003303 // OPEN: Settings > Apps > Default Apps > Default autofill app
3304 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003305
Chris Wren26ca65d2016-11-29 10:43:28 -05003306 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003307 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003308 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3309 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3310 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3311 NOTIFICATION_ID = 796;
3312 NOTIFICATION_TAG = 797;
3313 NOTIFICATION_SHADE_INDEX = 798;
3314 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003315
Anas Karbilaf7648f42016-12-11 00:55:02 +01003316 // OPEN: QS NFC tile shown
3317 // ACTION: QS NFC tile tapped
3318 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003319 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003320
Chris Wren26ca65d2016-11-29 10:43:28 -05003321 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003322 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003323 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3324 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3325 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3326 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3327 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3328 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3329
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003330 // ACTION: "Force stop" action on an app
3331 ACTION_APP_FORCE_STOP = 807;
3332
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003333 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3334 // CATEGORY: SETTINGS
3335 // OS: 8.0
3336 MANAGE_EXTERNAL_SOURCES = 808;
3337
Mahaver6cd47162017-01-23 09:59:33 +00003338 // ACTION: Logged when terms activity finishes.
3339 // TIME: Indicates time taken by terms activity to finish in MS.
3340 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3341
3342 // Indicates number of terms displayed on the terms screen.
3343 PROVISIONING_TERMS_COUNT = 810;
3344
3345 // Indicates number of terms read on the terms screen.
3346 PROVISIONING_TERMS_READ = 811;
3347
Winson Chung59fda9e2017-01-20 16:14:51 -08003348 // Logs that the user has edited the picture-in-picture settings.
3349 // CATEGORY: SETTINGS
3350 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3351
Winson Chungf4ac0632017-03-17 12:34:12 -07003352 // ACTION: Allow "Enable picture-in-picture" for an app
3353 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003354
Winson Chungf4ac0632017-03-17 12:34:12 -07003355 // ACTION: Deny "Enable picture-in-picture" for an app
3356 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003357
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003358 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3359 // CATEGORY: SETTINGS
3360 // OS: 8.0
3361 TTS_SLIDERS = 815;
3362
Jason Monk524fb402017-01-25 10:33:31 -05003363 // ACTION: Settings -> Display -> Theme
3364 ACTION_THEME = 816;
3365
chchaob8e253a2017-01-25 12:12:09 -08003366 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3367 // ACTION: Select to Speak configuration is chosen
3368 // SUBTYPE: 0 is off, 1 is on
3369 // CATEGORY: SETTINGS
3370 // OS: N
3371 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3372
Anton Philippov95a553e2017-01-27 00:08:24 +00003373 // OPEN: Settings > System > Backup
3374 // CATEGORY: SETTINGS
3375 // OS: O
3376 BACKUP_SETTINGS = 818;
3377
Winson Chung14fbe142016-12-19 16:18:24 -08003378 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003379 // VALUE: true if it was entered while hiding as a result of moving to
3380 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003381 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3382
3383 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3384 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3385 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3386
3387 // ACTION: The activity currently in picture-in-picture was minimized
3388 // VALUE: True if the PiP was minimized, false otherwise
3389 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3390
3391 // ACTION: Picture-in-picture was dismissed via the dismiss button
3392 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3393 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3394
3395 // ACTION: The visibility of the picture-in-picture meny
3396 // VALUE: Whether or not the menu is visible
3397 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3398
3399 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3400 // logged when the aspect ratio changes
3401 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3402
3403 // The current aspect ratio of the PiP, logged when it changes.
3404 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3405
Chris Wren27a52fa2017-02-01 14:21:43 -05003406 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3407 // CATEGORY: GLOBAL_SYSTEM_UI
3408 // OS: O
3409 FIELD_GESTURE_LENGTH = 826;
3410
3411 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3412 // CATEGORY: GLOBAL_SYSTEM_UI
3413 // OS: O
3414 FIELD_GESTURE_VELOCITY = 827;
3415
Christine Franks27fde392017-02-07 10:21:55 -08003416 // OPEN: Carrier demo mode password dialog
3417 CARRIER_DEMO_MODE_PASSWORD = 828;
3418
Fan Zhang70967f32017-02-13 16:02:24 -08003419 // ACTION: Create a Settings shortcut item.
3420 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3421
3422 // ACTION: A tile in Settings information architecture is clicked
3423 ACTION_SETTINGS_TILE_CLICK = 830;
3424
Julia Reynolds520df6e2017-02-13 09:05:10 -05003425 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3426 // updated
3427 // CATEGORY: NOTIFICATION
3428 // OS: O
3429 NOTIFICATION_SNOOZED = 831;
3430
3431 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3432 // OS: O
3433 NOTIFICATION_SNOOZED_CRITERIA = 832;
3434
Fan Zhang65899432017-02-14 13:36:53 -08003435 // FIELD - The context (source) from which an action is performed
3436 FIELD_CONTEXT = 833;
3437
Fan Zhangd95dcb42017-02-14 13:48:09 -08003438 // ACTION: Settings advanced button is expanded
3439 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3440
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003441 // ACTION: Logs the number of times the saved network evaluator was used to
3442 // recommend a wifi network
3443 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3444
3445 // ACTION: Logs the number of times the recommended network evaluator was
3446 // used to recommend a wifi network
3447 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3448
3449 // ACTION: Logs the number of times a recommended network was resulted in a
3450 // successful connection
3451 // VALUE: true if the connection was successful, false if the connection failed
3452 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3453
Daniel Nishic581bfc2017-02-08 10:18:19 -08003454 // OPEN: Settings > Storage > Games
3455 // CATEGORY: SETTINGS
3456 // OS: O
3457 APPLICATIONS_STORAGE_GAMES = 838;
3458
3459 // OPEN: Settings > Storage > Audio and Music
3460 // CATEGORY: SETTINGS
3461 // OS: O
3462 APPLICATIONS_STORAGE_MUSIC = 839;
3463
3464 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3465 // CATEGORY: SETTINGS
3466 // OS: O
3467 STORAGE_FREE_UP_SPACE_NOW = 840;
3468
3469 // ACTION: Settings > Storage > Files to open the File Manager
3470 // CATEGORY: SETTINGS
3471 // OS: O
3472 STORAGE_FILES = 841;
3473
Fan Zhangb1d49222017-02-15 17:12:58 -08003474 // FIELD - Rank of the clicked Settings search result
3475 FIELD_SETTINGS_SERACH_RESULT_RANK = 842;
3476
Fan Zhang7f2cace2017-02-17 12:05:48 -08003477 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3478 DEFAULT_ASSIST_PICKER = 843;
3479
3480 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3481 DEFAULT_VOICE_INPUT_PICKER = 844;
3482
Daniel Nishi4058a842017-02-21 17:11:35 -08003483 // OPEN: Settings > Storage > [Profile]
3484 SETTINGS_STORAGE_PROFILE = 845;
3485
Doris Lingedb84c32017-02-23 10:56:01 -08003486 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3487 // CATEGORY: SETTINGS
3488 // OS: O
3489 ENCRYPTION_AND_CREDENTIAL = 846;
3490
Fan Zhangb66e5422017-02-24 14:37:45 -08003491 // ACTION: Settings > About device > Build number
3492 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3493
3494 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3495 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3496
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003497 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3498 // CATEGORY: SETTINGS
3499 // OS: O
3500 WIFI_NETWORK_DETAILS = 849;
3501
jackqdyuleia2a14342017-02-28 16:20:48 -08003502 // ACTION: Settings > Battery > Menu > Usage Alerts
3503 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3504
3505 // ACTION: Settings > Battery > Menu > Optimization
3506 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3507
3508 // ACTION: Settings > Battery > Menu > Apps Toggle
3509 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3510
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003511 // ACTION: Settings > Any preference is changed
3512 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3513
3514 // FIELD: The name of preference when it is changed in Settings
3515 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3516
3517 // FIELD: The new value of preference when it is changed in Settings
3518 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3519
Julia Reynoldsd373d782017-03-03 13:32:57 -05003520 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3521 // channel updated
3522 // PACKAGE: the package the channel belongs too
3523 // CATEGORY: NOTIFICATION
3524 // OS: O
3525 ACTION_NOTIFICATION_CHANNEL = 856;
3526
3527 // Tagged data for notification channel. String.
3528 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3529
3530 // Tagged data for notification channel. int.
3531 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3532
3533 // OPEN: Notification channel group created.
3534 // PACKAGE: the package the group belongs to
3535 // CATEGORY: NOTIFICATION
3536 // OS: O
3537 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3538
3539 // Tagged data for notification channel group. String.
3540 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3541
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003542 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3543 // CATEGORY: SETTINGS
3544 // OS: O
3545 SETTINGS_NETWORK_SCORER = 861;
3546
Fan Zhang99861312017-03-07 14:32:38 -08003547 // OPEN: Settings > About device > Model > Hardware info dialog
3548 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3549
mariagpuyol0f5512e2017-03-01 12:09:56 -08003550 // ACTION: Checks whether a contact's phone still exists
3551 // Value 0: It doesn't exist anymore
3552 // Value 1: It still exists
3553 // Value 2: A SecurityException was thrown
3554 // CATEGORY: SETTINGS
3555 // OS: N
3556 ACTION_PHONE_EXISTS = 863;
3557
3558 // ACTION: Retrieves a contact from CP2
3559 // Value 0: Contact retrieved without issues
3560 // Value 1: An IllegalArgumentException was thrown
3561 // CATEGORY: SETTINGS
3562 // OS: N
3563 ACTION_GET_CONTACT = 864;
3564
Chris Wren67b3eb92017-03-07 11:31:12 -05003565 // This values should never appear in log outputs - it is reserved for
3566 // internal platform metrics use.
3567 RESERVED_FOR_LOGBUILDER_PID = 865;
3568
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003569 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3570 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3571
3572 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3573 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3574
3575 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3576 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3577
3578 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3579 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3580
3581 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3582 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3583
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003584 // The name of the activity being launched in an app transition event.
3585 APP_TRANSITION_ACTIVITY_NAME = 871;
3586
Fan Zhang082d21c2017-03-13 15:25:54 -07003587 // ACTION: Settings > App detail > Uninstall
3588 ACTION_SETTINGS_UNINSTALL_APP = 872;
3589
3590 // ACTION: Settings > App detail > Uninstall Device admin app
3591 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3592
3593 // ACTION: Settings > App detail > Disable app
3594 ACTION_SETTINGS_DISABLE_APP = 874;
3595
3596 // ACTION: Settings > App detail > Enable app
3597 ACTION_SETTINGS_ENABLE_APP = 875;
3598
3599 // ACTION: Settings > App detail > Clear data
3600 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3601
3602 // ACTION: Settings > App detail > Clear cache
3603 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3604
3605 // ACTION: Clicking on any search result in Settings.
3606 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3607
3608 // FIELD: Settings inline search result name
3609 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3610
3611 // FIELD: Settings inline search result value
3612 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3613
Fan Zhang53797932017-03-13 17:46:24 -07003614 // ACTION: Settings > Search > Click saved queries
3615 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3616
Doris Lingbf8d9de2017-03-15 11:52:50 -07003617 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3618 // CATEGORY: SETTINGS
3619 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3620
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003621 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3622 // PACKAGE: The package name of the app requesting the permission
3623 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3624
3625 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3626 // PACKAGE: The package name of the app that was granted the permission
3627 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3628
3629 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3630 // PACKAGE: The package name of the app requesting the permission
3631 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3632
3633 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3634 // PACKAGE: The package name of the app the permission was revoked for
3635 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3636
3637 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3638 // PACKAGE: The package name of the app requesting the permission
3639 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3640
3641 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3642 // PACKAGE: The package name of the app that was granted the permission
3643 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3644
3645 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3646 // PACKAGE: The package name of the app requesting the permission
3647 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3648
3649 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3650 // PACKAGE: The package name of the app the permission was revoked for
3651 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3652
3653 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3654 // PACKAGE: The package name of the app requesting the permission
3655 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3656
3657 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3658 // PACKAGE: The package name of the app that was granted the permission
3659 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3660
3661 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3662 // PACKAGE: The package name of the app requesting the permission
3663 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3664
3665 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3666 // PACKAGE: The package name of the app the permission was revoked for
3667 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3668
3669 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3670 // PACKAGE: The package name of the app requesting the permission
3671 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3672
3673 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3674 // PACKAGE: The package name of the app that was granted the permission
3675 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3676
3677 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3678 // PACKAGE: The package name of the app requesting the permission
3679 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3680
3681 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3682 // PACKAGE: The package name of the app the permission was revoked for
3683 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3684
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003685 // ACTION: Phase 1 of instant application resolution occurred
3686 // OS: O
3687 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3688
3689 // ACTION: Phase 2 of instant application resolution occurred
3690 // OS: O
3691 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3692
3693 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3694 // OS: O
3695 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3696
3697 // FIELD: The status of an ephemeral resolution phase
3698 // Value 0: success
3699 // Value 1: no full hash match
3700 // OS: O
3701 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3702
3703 // FIELD - A token to identify all events that are part of the same instant application launch
3704 // OS: O
3705 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3706
3707 // FIELD - The name of the package responsible for launching the activity
3708 // OS: O
3709 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3710
3711 // FIELD - Whether or not the launched activity is part of an instant application
3712 // OS: O
3713 APP_TRANSITION_IS_EPHEMERAL = 905;
3714
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003715 // An autofill session was started
3716 // Package: Package of app that is autofilled
3717 AUTOFILL_SESSION_STARTED = 906;
3718
3719 // An autofill request was processed by a service
3720 // Type TYPE_SUCCESS: The request succeeded
3721 // Type TYPE_FAILURE: The request failed
3722 // Package: Package of app that is autofilled
3723 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3724 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3725 AUTOFILL_REQUEST = 907;
3726
3727 // Tag of a field for a package of an autofill service
3728 FIELD_AUTOFILL_SERVICE = 908;
3729
3730 // Tag of a field for the number of datasets
3731 FIELD_AUTOFILL_NUM_DATASETS = 909;
3732
3733 // An autofill dataset selection UI was shown
3734 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3735 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3736 // Type TYPE_ACTION: dataset was selected
3737 // Type TYPE_DETAIL: authentication was selected
3738 // Package: Package of app that was autofilled
3739 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3740 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3741 AUTOFILL_FILL_UI = 910;
3742
3743 // Tag of a field for the length of the filter text
3744 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3745
3746 // An autofill authentification succeeded
3747 // Package: Package of app that was autofilled
3748 AUTOFILL_AUTHENTICATED = 912;
3749
3750 // An activity was autofilled and all values could be applied
3751 // Package: Package of app that is autofilled
3752 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3753 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3754 AUTOFILL_DATASET_APPLIED = 913;
3755
3756 // Tag of a field for the number values to be filled in
3757 FIELD_AUTOFILL_NUM_VALUES = 914;
3758
3759 // Tag of a field for the number of views that were filled
3760 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3761
3762 // An autofill save UI was shown
3763 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3764 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3765 // Type TYPE_ACTION: data was saved
3766 // Package: Package of app that was autofilled
3767 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3768 AUTOFILL_SAVE_UI = 916;
3769
3770 // Tag of a field for the number of saveable ids
3771 FIELD_AUTOFILL_NUM_IDS = 917;
3772
3773 // ACTION: An autofill service was reqiested to save data
3774 // Type TYPE_SUCCESS: The request succeeded
3775 // Type TYPE_FAILURE: The request failed
3776 // Package: Package of app that was autofilled
3777 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3778 AUTOFILL_DATA_SAVE_REQUEST = 918;
3779
3780 // An auto-fill session was finished
3781 // Package: Package of app that was autofilled
3782 AUTOFILL_SESSION_FINISHED = 919;
3783
Chris Wren148805582017-03-17 17:18:11 -04003784 // meta-event: a reader has checkpointed the log here.
3785 METRICS_CHECKPOINT = 920;
3786
Fan Zhanged1845f2017-03-23 14:46:59 -07003787 // OPEN: Settings -> Display -> When in VR Mode
3788 VR_DISPLAY_PREFERENCE = 921;
3789
Casey Burkhardtf4e98032017-03-22 22:52:24 -07003790 // OPEN: Settings > Accessibility > Magnification
3791 // CATEGORY: SETTINGS
3792 // OS: O
3793 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Chris Wren26ca65d2016-11-29 10:43:28 -05003794 // ---- End O Constants, all O constants go above this line ----
3795
Adrian Roos159ef7b2016-02-25 11:58:32 -08003796 // Add new aosp constants above this line.
3797 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05003798 }
3799}