blob: 03dfd46ea8d1ed8c08b5080478e8fe8d3edee037 [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
Chris Wrenf7342712017-09-14 10:55:55 -040036 // The view switched to detail mode (most relevant for quick settings tiles and notifications)
Chris Wren5e334f62016-11-14 10:16:21 -050037 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
Chris Wren65f07fe2017-03-14 14:10:37 -040048 // Type for APP_TRANSITION event: The transition started a new
49 // activity for which it's process wasn't running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080050 TYPE_TRANSITION_COLD_LAUNCH = 7;
51
Chris Wren65f07fe2017-03-14 14:10:37 -040052 // Type for APP_TRANSITION event: The transition started a new
53 // activity for which it's process was already running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080054 TYPE_TRANSITION_WARM_LAUNCH = 8;
55
Chris Wren65f07fe2017-03-14 14:10:37 -040056 // Type for APP_TRANSITION event: The transition brought an
57 // already existing activity to the front.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080058 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;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020065
66 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started without restoring from
67 // a bundle.
68 TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE = 12;
69
70 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started with restoring from
71 // a bundle.
72 TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE = 13;
Chris Wrenf7342712017-09-14 10:55:55 -040073
74 // The view switched to summary mode (most relevant for notifications)
75 TYPE_COLLAPSE = 14;
Chris Wren5e334f62016-11-14 10:16:21 -050076 }
77
Chris Wren65f07fe2017-03-14 14:10:37 -040078 // Types of alerts, as bit field values
79 enum Alert {
80 // Vibrate the device.
81 ALERT_BUZZ = 1;
82
83 // Make sound through the speaker.
84 ALERT_BEEP = 2;
85
86 // Flash a notificaiton light.
87 ALERT_BLINK = 4;
88 }
89
90 // Reasons that a notification might be dismissed.
91 enum DismissReason {
92 // from android.service.notification.NotificationListenerService
93
94 // Notification was canceled by the status bar reporting a notification click
95 REASON_CLICK = 1;
96
97 // Notification was canceled by the status bar reporting a user dismissal.
98 REASON_CANCEL = 2;
99
100 // Notification was canceled by the status bar reporting a user dismiss all.
101 REASON_CANCEL_ALL = 3;
102
103 // Notification was canceled by the status bar reporting an inflation error.
104 REASON_ERROR = 4;
105
106 // Notification was canceled by the package manager modifying the package.
107 REASON_PACKAGE_CHANGED = 5;
108
109 // Notification was canceled by the owning user context being stopped.
110 REASON_USER_STOPPED = 6;
111
112 // Notification was canceled by the user banning the package.
113 REASON_PACKAGE_BANNED = 7;
114
115 // Notification was canceled by the app canceling this specific notification.
116 REASON_APP_CANCEL = 8;
117
118 //Notification was canceled by the app cancelling all its notifications.
119 REASON_APP_CANCEL_ALL = 9;
120
121 // Notification was canceled by a listener reporting a user dismissal.
122 REASON_LISTENER_CANCEL = 10;
123
124 //Notification was canceled by a listener reporting a user dismiss all.
125 REASON_LISTENER_CANCEL_ALL = 11;
126
127 // Notification was canceled because it was a member of a canceled group.
128 REASON_GROUP_SUMMARY_CANCELED = 12;
129
130 // Notification was canceled because it was an invisible member of a group.
131 REASON_GROUP_OPTIMIZATION = 13;
132
133 // Notification was canceled by the device administrator suspending the package.
134 REASON_PACKAGE_SUSPENDED = 14;
135
136 // Notification was canceled by the owning managed profile being turned off.
137 REASON_PROFILE_TURNED_OFF = 15;
138
139 // Autobundled summary notification was canceled because its group was unbundled.
140 REASON_UNAUTOBUNDLED = 16;
141
142 // Notification was canceled by the user banning the channel.
143 REASON_CHANNEL_BANNED = 17;
144
145 // Notification was snoozed.
146 REASON_SNOOZED = 18;
147
148 // Notification was canceled due to timeout.
149 REASON_TIMEOUT = 19;
150 }
151
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700152 // Subtypes of camera events for ACTION_CAMERA_EVENT
153 enum CameraEvent {
154 // A back-facing camera was used
155 CAMERA_BACK_USED = 0;
156
157 // A front-facing camera was used
158 CAMERA_FRONT_USED = 1;
159
160 // An external camera was used
161 CAMERA_EXTERNAL_USED = 2;
162 }
163
Jan Althaus786a39d2017-09-15 10:41:16 +0200164 // TextClassifier entity types.
165 enum TextClassifierEntityType {
166 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
167 TEXT_CLASSIFIER_TYPE_OTHER = 2;
168 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
169 TEXT_CLASSIFIER_TYPE_PHONE = 4;
170 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
171 TEXT_CLASSIFIER_TYPE_URL = 6;
172 }
173
Jan Althausae5eb832017-11-06 12:31:59 +0100174 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events.
175 enum TextSelectionInvocationMethod {
Chris Wren3824c392017-11-27 12:54:14 -0500176 TEXT_SELECTION_INVOCATION_UNKNOWN = 0;
Jan Althausae5eb832017-11-06 12:31:59 +0100177 TEXT_SELECTION_INVOCATION_MANUAL = 1;
178 TEXT_SELECTION_INVOCATION_LINK = 2;
179 }
180
Chris Wren77781d32016-01-11 14:49:26 -0500181 // Known visual elements: views or controls.
182 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500183 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500184 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500185
186 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500187 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500188
189 // OPEN: Settings > Accessibility
190 // CATEGORY: SETTINGS
191 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500192 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500193
194 // OPEN: Settings > Accessibility > Captions
195 // CATEGORY: SETTINGS
196 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500197 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500198
199 // OPEN: Settings > Accessibility > [Service]
200 // CATEGORY: SETTINGS
201 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500202 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500203
204 // OPEN: Settings > Accessibility > Color correction
205 // CATEGORY: SETTINGS
206 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500207 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500208
209 // OPEN: Settings > Accessibility > Accessibility shortcut
210 // CATEGORY: SETTINGS
211 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500212 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500213
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700214 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
215 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
216 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500217 // CATEGORY: SETTINGS
218 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500219 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500220
221 // OPEN: Settings > Accounts
222 // CATEGORY: SETTINGS
223 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500224 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500225
226 // OPEN: Settings > Accounts > [Single Account Sync Settings]
227 // CATEGORY: SETTINGS
228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500229 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500230
231 // OPEN: Settings > Accounts > Add an account
232 // CATEGORY: SETTINGS
233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500234 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500235
236 // OPEN: Settings > Accounts > [List of accounts when more than one]
237 // CATEGORY: SETTINGS
238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500239 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500240
241 // OPEN: Settings > Cellular network settings > APNs
242 // CATEGORY: SETTINGS
243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500244 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500245
246 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
247 // CATEGORY: SETTINGS
248 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500249 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500250
251 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500252 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500253
254 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500255 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500256
257 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500258 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500259
260 // OPEN: Settings > Apps > Configure apps > App links > [App]
261 // CATEGORY: SETTINGS
262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500263 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500264
265 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500266 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500267
268 // OPEN: Settings > Internal storage > Apps storage > [App]
269 // CATEGORY: SETTINGS
270 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500271 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500272
273 // OPEN: Settings > Apps > [App info]
274 // CATEGORY: SETTINGS
275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500276 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500277
278 // OPEN: Settings > Memory > App usage > [App Memory usage]
279 // CATEGORY: SETTINGS
280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500281 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500282
283 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500284 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OPEN: Settings > Memory > App usage
287 // CATEGORY: SETTINGS
288 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500289 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500290
291 // OPEN: Settings > Bluetooth
292 // CATEGORY: SETTINGS
293 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500294 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500295
296 // OPEN: Choose Bluetooth device (ex: when sharing)
297 // CATEGORY: SETTINGS
298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500299 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500300
301 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500302 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500303
304 // OPEN: Settings > Security > Choose screen lock
305 // CATEGORY: SETTINGS
306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500307 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500308
309 // OPEN: Settings > Security > Choose screen lock > Choose your password
310 // CATEGORY: SETTINGS
311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500312 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500313
314 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
315 // CATEGORY: SETTINGS
316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500317 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500318
319 // OPEN: Settings > Security > Choose screen lock > Confirm your password
320 // CATEGORY: SETTINGS
321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500322 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
325 // CATEGORY: SETTINGS
326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500327 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OPEN: Settings > Security > Encrypt phone
330 // CATEGORY: SETTINGS
331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500332 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500333
334 // OPEN: Settings > Security > Encrypt phone > Confirm
335 // CATEGORY: SETTINGS
336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500337 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OPEN: Settings > Search results
340 // CATEGORY: SETTINGS
341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500342 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings (Root page)
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500350 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500351
352 // OPEN: Settings > Data usage
353 // CATEGORY: SETTINGS
354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500355 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500356
357 // OPEN: Settings > Date & time
358 // CATEGORY: SETTINGS
359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500360 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500361
362 // OPEN: Settings > Developer options
363 // CATEGORY: SETTINGS
364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500365 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500366
367 // OPEN: Settings > About phone
368 // CATEGORY: SETTINGS
369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500370 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500371
372 // OPEN: Settings > About phone > Status > IMEI information
373 // CATEGORY: SETTINGS
374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500375 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500376
377 // OPEN: Settings > Internal storage
378 // CATEGORY: SETTINGS
379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500380 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500381
382 // OPEN: Settings > About phone > Status > SIM status
383 // CATEGORY: SETTINGS
384 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500385 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > About phone > Status
388 // CATEGORY: SETTINGS
389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500390 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500391
392 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500393 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500394
395 // OPEN: Settings > Display
396 // CATEGORY: SETTINGS
397 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500398 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500399
400 // OPEN: Settings > Display > Daydream
401 // CATEGORY: SETTINGS
402 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500403 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500404
405 // OPEN: Settings > Security > Screen lock > Secure start-up
406 // CATEGORY: SETTINGS
407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500408 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500409
410 // OPEN: Settings > Security > Nexus Imprint
411 // CATEGORY: SETTINGS
412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500413 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500414
415 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500416 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500417
418 // OPEN: Settings > Battery > History details
419 // CATEGORY: SETTINGS
420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500421 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500422
423 // OPEN: Settings > Battery > Battery saver
424 // CATEGORY: SETTINGS
425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500426 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500427
428 // OPEN: Settings > Battery > [App Use details]
429 // CATEGORY: SETTINGS
430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500431 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500432
433 // OPEN: Settings > Battery
434 // CATEGORY: SETTINGS
435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500436 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500437
438 // OPEN: Settings > Home
439 // CATEGORY: SETTINGS
440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500441 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500442
443 // OPEN: Settings > Security > SIM card lock settings
444 // CATEGORY: SETTINGS
445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500446 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500447
448 // OPEN: Settings > Language & input
449 // CATEGORY: SETTINGS
450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500451 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Settings > Language & input > Physical keyboard
454 // CATEGORY: SETTINGS
455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500456 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500457
458 // OPEN: Settings > Language & input > Spell checker
459 // CATEGORY: SETTINGS
460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500461 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500462
463 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500464 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500465
466 // OPEN: Settings > Language & input > Personal dictionary
467 // CATEGORY: SETTINGS
468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500469 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500470
471 // OPEN: Settings > Language & input > Add word
472 // CATEGORY: SETTINGS
473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500474 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500475
476 // OPEN: Settings > Location
477 // CATEGORY: SETTINGS
478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500479 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500480
481 // OPEN: Settings > Location > Location mode
482 // CATEGORY: SETTINGS
483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500484 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OPEN: Settings > Apps
487 // CATEGORY: SETTINGS
488 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500489 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500490
491 // OPEN: Settings > Backup & reset > Factory data reset
492 // CATEGORY: SETTINGS
493 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500494 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500495
496 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
497 // CATEGORY: SETTINGS
498 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500499 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Data usage > Network restrictions
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > More > Android Beam
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Tap & pay
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: Settings > Sound & notification
517 // CATEGORY: SETTINGS
518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500519 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500520
521 // OPEN: Settings > Sound & notification > App notifications > [App]
522 // CATEGORY: SETTINGS
523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500524 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500525
526 // OPEN: Settings > Sound & notification > Other sounds
527 // CATEGORY: SETTINGS
528 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500529 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500530
531 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500532 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500533
534 // OPEN: Settings Widget > Notification log
535 // CATEGORY: SETTINGS
536 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500537 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500538
539 // OPEN: Settings > Sound & notification > Do not disturb
540 // CATEGORY: SETTINGS
541 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500542 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500543
544 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500545 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500546
547 // OPEN: Print job notification > Print job settings
548 // CATEGORY: SETTINGS
549 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500550 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500551
552 // OPEN: Settings > Printing > [Print Service]
553 // CATEGORY: SETTINGS
554 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500555 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500556
557 // OPEN: Settings > Printing
558 // CATEGORY: SETTINGS
559 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500560 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500561
562 // OPEN: Settings > Backup & reset
563 // CATEGORY: SETTINGS
564 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500565 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500566
567 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500568 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500569
570 // OPEN: Settings > Backup & reset > Network settings reset
571 // CATEGORY: SETTINGS
572 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500573 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
576 // CATEGORY: SETTINGS
577 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500578 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OPEN: Settings > Developer Options > Running Services
581 // CATEGORY: SETTINGS
582 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500583 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500584
585 // OPEN: Settings > Security > Screen pinning
586 // CATEGORY: SETTINGS
587 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500588 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500589
590 // OPEN: Settings > Security
591 // CATEGORY: SETTINGS
592 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500593 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500594
595 // OPEN: Settings > SIM cards
596 // CATEGORY: SETTINGS
597 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500598 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500599
600 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500601 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500602
603 // OPEN: Settings > More > Tethering & portable hotspot
604 // CATEGORY: SETTINGS
605 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500606 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500607
608 // OPEN: Settings > Security > Trust agents
609 // CATEGORY: SETTINGS
610 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500611 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500612
613 // OPEN: Settings > Security > Trusted credentials
614 // CATEGORY: SETTINGS
615 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500616 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500617
618 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
619 // CATEGORY: SETTINGS
620 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500621 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500622
623 // OPEN: Settings > Language & input > Text-to-speech output
624 // CATEGORY: SETTINGS
625 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500626 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500627
628 // OPEN: Settings > Security > Apps with usage access
629 // CATEGORY: SETTINGS
630 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500631 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500632
633 // OPEN: Settings > Users
634 // CATEGORY: SETTINGS
635 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500636 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: Settings > Users > [Restricted profile app & content access]
639 // CATEGORY: SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: Settings > Users > [User settings]
644 // CATEGORY: SETTINGS
645 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500646 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500647
648 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500649 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500650
651 // OPEN: Settings > More > VPN
652 // CATEGORY: SETTINGS
653 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500654 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500655
656 // OPEN: Settings > Display > Choose wallpaper from
657 // CATEGORY: SETTINGS
658 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500659 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500660
661 // OPEN: Settings > Display > Cast
662 // CATEGORY: SETTINGS
663 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500664 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500665
666 // OPEN: Settings > Wi-Fi
667 // CATEGORY: SETTINGS
668 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500669 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500670
671 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
672 // CATEGORY: SETTINGS
673 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500674 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500675
676 // OPEN: Settings > More > Wi-Fi Calling
677 // CATEGORY: SETTINGS
678 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500679 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500680
681 // OPEN: Settings > Wi-Fi > Saved networks
682 // CATEGORY: SETTINGS
683 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500684 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500687 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500688
689 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500690 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500691
692 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
693 // CATEGORY: SETTINGS
694 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500695 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500696
697 // OPEN: Settings > More
698 // CATEGORY: SETTINGS
699 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500700 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500701
702 // OPEN: Quick Settings Panel
703 // CATEGORY: QUICK_SETTINGS
704 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500705 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500706
707 // OPEN: QS Airplane mode tile shown
708 // ACTION: QS Airplane mode tile tapped
709 // SUBTYPE: 0 is off, 1 is on
710 // CATEGORY: QUICK_SETTINGS
711 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500712 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500713
714 // OPEN: QS Bluetooth tile shown
715 // ACTION: QS Bluetooth tile tapped
716 // SUBTYPE: 0 is off, 1 is on
717 // CATEGORY: QUICK_SETTINGS
718 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500719 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500720
721 // OPEN: QS Cast tile shown
722 // ACTION: QS Cast tile tapped
723 // CATEGORY: QUICK_SETTINGS
724 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500725 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500726
727 // OPEN: QS Cellular tile shown
728 // ACTION: QS Cellular tile tapped
729 // CATEGORY: QUICK_SETTINGS
730 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500731 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500732
733 // OPEN: QS Color inversion tile shown
734 // ACTION: QS Color inversion tile tapped
735 // SUBTYPE: 0 is off, 1 is on
736 // CATEGORY: QUICK_SETTINGS
737 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500738 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500739
740 // OPEN: QS Cellular tile > Cellular detail panel
741 // CATEGORY: QUICK_SETTINGS
742 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500743 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500744
745 // OPEN: QS Do not disturb tile shown
746 // ACTION: QS Do not disturb tile tapped
747 // SUBTYPE: 0 is off, 1 is on
748 // CATEGORY: QUICK_SETTINGS
749 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500750 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500751
752 // OPEN: QS Flashlight tile shown
753 // ACTION: QS Flashlight tile tapped
754 // SUBTYPE: 0 is off, 1 is on
755 // CATEGORY: QUICK_SETTINGS
756 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500757 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500758
759 // OPEN: QS Hotspot tile shown
760 // ACTION: QS Hotspot tile tapped
761 // SUBTYPE: 0 is off, 1 is on
762 // CATEGORY: QUICK_SETTINGS
763 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500764 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500765
766 // OPEN: QS 3P tile shown
767 // ACTION: QS 3P tile tapped
768 // CATEGORY: QUICK_SETTINGS
769 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500770 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500771
772 // OPEN: QS Location tile shown
773 // ACTION: QS Location tile tapped
774 // SUBTYPE: 0 is off, 1 is on
775 // CATEGORY: QUICK_SETTINGS
776 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500777 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500778
779 // OPEN: QS Rotation tile shown
780 // ACTION: QS Rotation tile tapped
781 // SUBTYPE: 0 is off, 1 is on
782 // CATEGORY: QUICK_SETTINGS
783 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500784 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500785
786 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500787 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500788
789 // OPEN: QS User list panel
790 // CATEGORY: QUICK_SETTINGS
791 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500792 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500793
794 // OPEN: QS WiFi tile shown
795 // ACTION: QS WiFi tile tapped
796 // SUBTYPE: 0 is off, 1 is on
797 // CATEGORY: QUICK_SETTINGS
798 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500799 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500800
801 // OPEN: Notification Panel (including lockscreen)
802 // CATEGORY: NOTIFICATION
803 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500804 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500805
806 // OPEN: Notification in panel became visible.
807 // PACKAGE: App that posted the notification.
808 // ACTION: Notification is tapped.
809 // PACKAGE: App that posted the notification
810 // DETAIL: Notification is expanded by user.
811 // PACKAGE: App that posted the notification
812 // DISMISS: Notification is dismissed.
813 // PACKAGE: App that posted the notification
814 // SUBTYPE: Dismiss reason from NotificationManagerService.java
815 // CATEGORY: NOTIFICATION
816 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500817 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500818
819 // ACTION: User tapped notification action
820 // PACKAGE: App that posted the notification
821 // SUBTYPE: Index of action on notification
822 // CATEGORY: NOTIFICATION
823 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500824 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500825
826 // OPEN: Settings > Apps > Configure apps > App permissions
827 // CATEGORY: SETTINGS
828 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500829 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500830
831 // OPEN: Settings > Location > Scanning
832 // CATEGORY: SETTINGS
833 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500834 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500835
836 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500837 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500838
839 // OPEN: Settings > Sound & notification > App notifications
840 // CATEGORY: SETTINGS
841 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500842 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500843
844 // ACTION: Settings > Wi-Fi > Overflow > Add Network
845 // CATEGORY: SETTINGS
846 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500847 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500848
849 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700850 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500851 // CATEGORY: SETTINGS
852 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500853 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500854
855 // ACTION: Settings > Wi-Fi > Overflow > Refresh
856 // CATEGORY: SETTINGS
857 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500858 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500859
860 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
861 // CATEGORY: SETTINGS
862 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500863 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500864
865 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700866 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500867 // CATEGORY: SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // ACTION: Settings > Wi-Fi > Toggle on
872 // CATEGORY: SETTINGS
873 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500874 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500875
876 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500877 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // OPEN: Settings > Sound & notification > DND > Priority only allows
880 // CATEGORY: SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // OPEN: Settings > Sound & notification > DND > Automatic rules
885 // CATEGORY: SETTINGS
886 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500887 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500888
889 // OPEN: Settings > Apps > Configure apps > App links
890 // CATEGORY: SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // OPEN: Settings > Sound & notification > DND > [Time based rule]
895 // CATEGORY: SETTINGS
896 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500897 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500898
899 // OPEN: Settings > Sound & notification > DND > [External rule]
900 // CATEGORY: SETTINGS
901 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500902 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500903
904 // OPEN: Settings > Sound & notification > DND > [Event rule]
905 // CATEGORY: SETTINGS
906 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500907 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500908
909 // ACTION: App notification settings > Block Notifications
910 // CATEGORY: SETTINGS
911 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500912 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // ACTION: Notification shade > Dismiss all button
915 // CATEGORY: NOTIFICATION
916 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500917 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500918
919 // OPEN: QS Do Not Disturb detail panel
920 // CATEGORY: QUICK_SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // OPEN: QS Bluetooth detail panel
925 // CATEGORY: QUICK_SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // OPEN: QS Cast detail panel
930 // CATEGORY: QUICK_SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // OPEN: QS Wi-Fi detail panel
935 // CATEGORY: QUICK_SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
940 // SUBTYPE: 0 is off, 1 is on
941 // CATEGORY: QUICK_SETTINGS
942 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500943 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500944
945 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
946 // SUBTYPE: 0 is off, 1 is on
947 // CATEGORY: QUICK_SETTINGS
948 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500949 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500950
951 // ACTION: QS Cellular detail panel > Cellular toggle
952 // SUBTYPE: 0 is off, 1 is on
953 // CATEGORY: QUICK_SETTINGS
954 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500955 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500956
957 // ACTION: QS User list panel > Select different user
958 // CATEGORY: QUICK_SETTINGS
959 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500960 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500961
962 // ACTION: QS Cast detail panel > Select cast device
963 // CATEGORY: QUICK_SETTINGS
964 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500965 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500966
967 // ACTION: QS Cast detail panel > Disconnect cast device
968 // CATEGORY: QUICK_SETTINGS
969 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500970 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500971
972 // ACTION: Settings > Bluetooth > Toggle
973 // SUBTYPE: 0 is off, 1 is on
974 // CATEGORY: SETTINGS
975 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500976 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500977
978 // ACTION: Settings > Bluetooth > Overflow > Refresh
979 // CATEGORY: SETTINGS
980 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500981 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500982
983 // ACTION: Settings > Bluetooth > Overflow > Rename this device
984 // CATEGORY: SETTINGS
985 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500986 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500987
988 // ACTION: Settings > Bluetooth > Overflow > Show received files
989 // CATEGORY: SETTINGS
990 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500991 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500992
993 // ACTION: QS DND details panel > Increase / Decrease exit time
994 // SUBTYPE: true is increase, false is decrease
995 // CATEGORY: QUICK_SETTINGS
996 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500997 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500998
999 // ACTION: QS DND details panel > [Exit condition]
1000 // CATEGORY: QUICK_SETTINGS
1001 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001002 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001003
1004 // ACTION: QS DND details panel > [DND mode]
1005 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1006 // CATEGORY: QUICK_SETTINGS
1007 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001008 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001009
1010 // ACTION: QS DND detail panel > DND toggle
1011 // SUBTYPE: 0 is off, 1 is on
1012 // CATEGORY: QUICK_SETTINGS
1013 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001014 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001015
1016 // ACTION: DND Settings > Priority only allows > Reminder toggle
1017 // SUBTYPE: 0 is off, 1 is on
1018 // CATEGORY: SETTINGS
1019 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001020 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001021
1022 // ACTION: DND Settings > Priority only allows > Event toggle
1023 // SUBTYPE: 0 is off, 1 is on
1024 // CATEGORY: SETTINGS
1025 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001026 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001027
1028 // ACTION: DND Settings > Priority only allows > Messages
1029 // SUBTYPE: 0 is off, 1 is on
1030 // CATEGORY: SETTINGS
1031 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001032 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001033
1034 // ACTION: DND Settings > Priority only allows > Calls
1035 // SUBTYPE: 0 is off, 1 is on
1036 // CATEGORY: SETTINGS
1037 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001038 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001039
1040 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1041 // SUBTYPE: 0 is off, 1 is on
1042 // CATEGORY: SETTINGS
1043 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001044 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001045
1046 // ACTION: DND Settings > Automatic rules > Add rule
1047 // CATEGORY: SETTINGS
1048 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001049 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001050
1051 // ACTION: DND Settings > Automatic rules > Add rule > OK
1052 // CATEGORY: SETTINGS
1053 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001054 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001055
1056 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1057 // CATEGORY: SETTINGS
1058 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001059 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001060
1061 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1062 // CATEGORY: SETTINGS
1063 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001064 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001065
1066 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1067 // SUBTYPE: 0 is off, 1 is on
1068 // CATEGORY: SETTINGS
1069 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001070 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001071
1072 // ACTION: Settings > More > Airplane mode toggle
1073 // SUBTYPE: 0 is off, 1 is on
1074 // CATEGORY: SETTINGS
1075 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001076 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001077
1078 // ACTION: Settings > Data usage > Cellular data toggle
1079 // SUBTYPE: 0 is off, 1 is on
1080 // CATEGORY: SETTINGS
1081 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001082 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001083
1084 // OPEN: Settings > Sound & notification > Notification access
1085 // CATEGORY: SETTINGS
1086 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001087 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001088
1089 // OPEN: Settings > Sound & notification > Do Not Disturb access
1090 // CATEGORY: SETTINGS
1091 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001092 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // OPEN: Settings > Apps > Configure apps > Default Apps
1095 // CATEGORY: SETTINGS
1096 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001097 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // OPEN: Settings > Internal storage > Apps storage
1100 // CATEGORY: SETTINGS
1101 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001102 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001103
1104 // OPEN: Settings > Security > Usage access
1105 // CATEGORY: SETTINGS
1106 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001107 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001108
1109 // OPEN: Settings > Battery > Battery optimization
1110 // CATEGORY: SETTINGS
1111 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001112 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001113
1114 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001115 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001116
1117 // ACTION: Lockscreen > Unlock gesture
1118 // CATEGORY: GLOBAL_SYSTEM_UI
1119 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001120 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001121
1122 // ACTION: Lockscreen > Pull shade open
1123 // CATEGORY: GLOBAL_SYSTEM_UI
1124 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001125 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001126
1127 // ACTION: Lockscreen > Tap on lock, shows hint
1128 // CATEGORY: GLOBAL_SYSTEM_UI
1129 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001130 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001131
1132 // ACTION: Lockscreen > Camera
1133 // CATEGORY: GLOBAL_SYSTEM_UI
1134 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001135 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001136
1137 // ACTION: Lockscreen > Dialer
1138 // CATEGORY: GLOBAL_SYSTEM_UI
1139 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001140 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001141
1142 // ACTION: Lockscreen > Tap on lock, locks phone
1143 // CATEGORY: GLOBAL_SYSTEM_UI
1144 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001145 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001146
1147 // ACTION: Lockscreen > Tap on notification, false touch rejection
1148 // CATEGORY: GLOBAL_SYSTEM_UI
1149 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001150 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001151
1152 // ACTION: Lockscreen > Swipe down to open quick settings
1153 // CATEGORY: GLOBAL_SYSTEM_UI
1154 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001155 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001156
1157 // ACTION: Swipe down to open quick settings when unlocked
1158 // CATEGORY: GLOBAL_SYSTEM_UI
1159 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001160 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // ACTION: Notification shade > Tap to open quick settings
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001165 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // OPEN: Lockscreen
1168 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1169 // CATEGORY: GLOBAL_SYSTEM_UI
1170 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001171 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001172
1173 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1174 // CATEGORY: GLOBAL_SYSTEM_UI
1175 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001176 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001177
1178 // OPEN: Screen turned on
1179 // SUBTYPE: 2 is user action
1180 // CATEGORY: GLOBAL_SYSTEM_UI
1181 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001182 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001183
1184 // OPEN: Notification caused sound, vibration, and/or LED blink
1185 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1186 // CATEGORY: NOTIFICATION
1187 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001188 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001189
1190 // ACTION: Lockscreen > Emergency Call button
1191 // CATEGORY: GLOBAL_SYSTEM_UI
1192 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001193 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001194
1195 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1196 // CATEGORY: SETTINGS
1197 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001198 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001199
1200 // OPEN: Settings > Memory
1201 // CATEGORY: SETTINGS
1202 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001203 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001204
1205 // ACTION: Settings > Display > When device is rotated
1206 // CATEGORY: SETTINGS
1207 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001208 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001209
1210 // ACTION: Long press on notification to view controls
1211 // CATEGORY: NOTIFICATION
1212 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001213 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001214
1215 // ACTION: Notificatoin controls > Info button
1216 // CATEGORY: NOTIFICATION
1217 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001218 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001219
1220 // ACTION: Notification controls > Settings button
1221 // CATEGORY: NOTIFICATION
1222 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001223 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // OPEN: Volume Dialog (with hardware buttons)
1226 // CATEGORY: GLOBAL_SYSTEM_UI
1227 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001228 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1231 // CATEGORY: GLOBAL_SYSTEM_UI
1232 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001233 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001234
1235 // ACTION: Volume dialog > Adjust volume slider
1236 // SUBTYPE: volume level (0-7)
1237 // CATEGORY: GLOBAL_SYSTEM_UI
1238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001239 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001240
1241 // ACTION: Volume dialog > Select non-active stream
1242 // SUBTYPE: stream (defined in AudioSystem.java)
1243 // CATEGORY: GLOBAL_SYSTEM_UI
1244 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001245 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001246
1247 // ACTION: Adjust volume with hardware key
1248 // SUBTYPE: volume level (0-7)
1249 // CATEGORY: GLOBAL_SYSTEM_UI
1250 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001251 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001252
1253 // ACTION: Volume dialog > Mute a stream by tapping icon
1254 // SUBTYPE: mute is 1, audible is 2
1255 // CATEGORY: GLOBAL_SYSTEM_UI
1256 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001257 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001258
1259 // ACTION: Volume dialog > Change ringer mode by tapping icon
1260 // SUBTYPE: 2 is audible, 3 is vibrate
1261 // CATEGORY: GLOBAL_SYSTEM_UI
1262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001263 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001264
1265 // ACTION: Chooser shown (share target, file open, etc.)
1266 // CATEGORY: GLOBAL_SYSTEM_UI
1267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001268 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // ACTION: Chooser > User taps an app target
1271 // SUBTYPE: Index of target
1272 // CATEGORY: GLOBAL_SYSTEM_UI
1273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001274 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001275
1276 // ACTION: Chooser > User taps a service target
1277 // SUBTYPE: Index of target
1278 // CATEGORY: GLOBAL_SYSTEM_UI
1279 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001280 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001281
1282 // ACTION: Chooser > User taps a standard target
1283 // SUBTYPE: Index of target
1284 // CATEGORY: GLOBAL_SYSTEM_UI
1285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001286 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001287
1288 // ACTION: QS Brightness Slider (with auto brightness disabled)
1289 // SUBTYPE: slider value
1290 // CATEGORY: QUICK_SETTINGS
1291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001292 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001293
1294 // ACTION: QS Brightness Slider (with auto brightness enabled)
1295 // SUBTYPE: slider value
1296 // CATEGORY: QUICK_SETTINGS
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // OPEN: Settings > Display > Brightness Slider
1301 // CATEGORY: SETTINGS
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001304
Christine Franks47175c32017-03-14 10:21:25 -07001305 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001306 // CATEGORY: SETTINGS
1307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001308 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001309
1310 // OPEN: Display has entered dream mode
1311 // CATEGORY: GLOBAL_SYSTEM_UI
1312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001313 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001314
1315 // OPEN: Display has entered ambient notification mode
1316 // CATEGORY: GLOBAL_SYSTEM_UI
1317 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001318 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001319
1320 // OPEN: Overview
1321 // CATEGORY: GLOBAL_SYSTEM_UI
1322 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001323 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001324
1325 // OPEN: Settings > About phone > Legal information
1326 // CATEGORY: SETTINGS
1327 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001328 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // OPEN: Settings > Search > Perform search
1331 // CATEGORY: SETTINGS
1332 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001333 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001334
1335 // OPEN: Settings > System UI Tuner
1336 // CATEGORY: SETTINGS
1337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001338 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001339
1340 // OPEN: Settings > System UI Tuner > Quick Settings
1341 // CATEGORY: SETTINGS
1342 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001343 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001344
1345 // OPEN: Settings > System UI Tuner > Demo mode
1346 // CATEGORY: SETTINGS
1347 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001348 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001349
1350 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1351 // PACKAGE: Tile
1352 // CATEGORY: SETTINGS
1353 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001354 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001355
1356 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1357 // PACKAGE: Tile
1358 // CATEGORY: SETTINGS
1359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001360 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001361
1362 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1363 // PACKAGE: Tile
1364 // CATEGORY: SETTINGS
1365 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001366 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001367
1368 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1369 // PACKAGE: Icon
1370 // CATEGORY: SETTINGS
1371 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001372 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001373
1374 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1375 // PACKAGE: Icon
1376 // CATEGORY: SETTINGS
1377 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001378 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001379
1380 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1381 // SUBTYPE: false is disabled, true is enabled
1382 // CATEGORY: SETTINGS
1383 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001384 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001385
1386 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1387 // SUBTYPE: false is disabled, true is enabled
1388 // CATEGORY: SETTINGS
1389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001390 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001391
1392 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1393 // SUBTYPE: 0 is disabled, 1 is enabled
1394 // CATEGORY: SETTINGS
1395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001396 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // OPEN: Settings > Developer options > Inactive apps
1399 // CATEGORY: SETTINGS
1400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001401 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // ACTION: Long press home to bring up assistant
1404 // CATEGORY: GLOBAL_SYSTEM_UI
1405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001406 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // OPEN: Fingerprint Enroll > Find Sensor
1414 // CATEGORY: SETTINGS
1415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001416 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1419 // CATEGORY: SETTINGS
1420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001421 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: Fingerprint Enroll introduction
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // OPEN: Fingerprint Enroll onboarding
1429 // CATEGORY: SETTINGS
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // OPEN: Fingerprint Enroll > Let's Start!
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // OPEN: Fingerprint Enroll SUW > Let's Start!
1439 // CATEGORY: SETTINGS
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // OPEN: Fingerprint Enroll SUW > Find Sensor
1444 // CATEGORY: SETTINGS
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // OPEN: Fingerprint Enroll SUW introduction
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // OPEN: Fingerprint Enroll SUW onboarding
1459 // CATEGORY: SETTINGS
1460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001461 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001462
1463 // ACTION: Add fingerprint > Enroll fingerprint
1464 // CATEGORY: SETTINGS
1465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001466 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001467
1468 // ACTION: Authenticate using fingerprint
1469 // CATEGORY: SETTINGS
1470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001471 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001472
1473 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1474 // CATEGORY: SETTINGS
1475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001476 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001477
1478 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1479 // CATEGORY: SETTINGS
1480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001481 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // ACTION: Double tap camera shortcut
1484 // CATEGORY: GLOBAL_SYSTEM_UI
1485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001486 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001487
1488 // ACTION: Double twist camera shortcut
1489 // CATEGORY: GLOBAL_SYSTEM_UI
1490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001491 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001492
1493 // OPEN: QS Work Mode tile shown
1494 // ACTION: QS Work Mode tile tapped
1495 // SUBTYPE: 0 is off, 1 is on
1496 // CATEGORY: QUICK_SETTINGS
1497 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001498 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001499
1500 // OPEN: Settings > Developer Options > Background Check
1501 // CATEGORY: SETTINGS
1502 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001503 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001504
1505 // OPEN: QS Lock tile shown
1506 // ACTION: QS Lock tile tapped
1507 // SUBTYPE: 0 is off, 1 is on
1508 // CATEGORY: QUICK_SETTINGS
1509 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001510 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001511
1512 // OPEN: QS User Tile shown
1513 // CATEGORY: QUICK_SETTINGS
1514 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001515 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001516
1517 // OPEN: QS Battery tile shown
1518 // CATEGORY: QUICK_SETTINGS
1519 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001520 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001521
1522 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1523 // CATEGORY: SETTINGS
1524 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001525 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001526
1527 // ACTION: Visual interruptions > No screen interuptions toggle
1528 // SUBTYPE: 0 is off, 1 is on
1529 // CATEGORY: SETTINGS
1530 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001531 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001532
1533 // ACTION: Visual interruptions > No notification light toggle
1534 // SUBTYPE: 0 is off, 1 is on
1535 // CATEGORY: SETTINGS
1536 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001537 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001538
Julia Reynolds005c8b92017-08-24 10:35:53 -04001539 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001540 // CATEGORY: SETTINGS
1541 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001542 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001543
1544 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1545 // PACKAGE: Selected SMS app
1546 // CATEGORY: SETTINGS
1547 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001548 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001549
1550 // OPEN: QS Color modification tile shown
1551 // ACTION: QS Color modification tile tapped
1552 // SUBTYPE: 0 is off, 1 is on
1553 // CATEGORY: QUICK_SETTINGS
1554 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001555 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001556
1557 // OPEN: QS Custom tile shown
1558 // ACTION: QS Work Mode tile tapped
1559 // CATEGORY: QUICK_SETTINGS
1560 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001561 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001562
1563 // ACTION: Visual interruptions > Never turn off the screen toggle
1564 // SUBTYPE: 0 is off, 1 is on
1565 // CATEGORY: SETTINGS
1566 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001567 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001568
Chris Wren7c516842016-03-01 16:44:32 -05001569 // ACTION: Overview > Long-press task, drag to enter split-screen
1570 // CATEGORY: GLOBAL_SYSTEM_UI
1571 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001572 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1573
Chris Wren7c516842016-03-01 16:44:32 -05001574 // ACTION: In App > Long-press Overview button to enter split-screen
1575 // CATEGORY: GLOBAL_SYSTEM_UI
1576 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001577 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1578
Chris Wren7c516842016-03-01 16:44:32 -05001579 // ACTION: In App > Swipe Overview button to enter split-screen
1580 // CATEGORY: GLOBAL_SYSTEM_UI
1581 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001582 ACTION_WINDOW_DOCK_SWIPE = 272;
1583
Chris Wren7c516842016-03-01 16:44:32 -05001584 // ACTION: Launch profile-specific app > Confirm credentials
1585 // CATEGORY: GLOBAL_SYSTEM_UI
1586 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001587 PROFILE_CHALLENGE = 273;
1588
Chris Wren7c516842016-03-01 16:44:32 -05001589 // OPEN: QS Battery detail panel
1590 // CATEGORY: GLOBAL_SYSTEM_UI
1591 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001592 QS_BATTERY_DETAIL = 274;
1593
Chris Wren7c516842016-03-01 16:44:32 -05001594 // OPEN: Overview > History
1595 // CATEGORY: GLOBAL_SYSTEM_UI
1596 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001597 OVERVIEW_HISTORY = 275;
1598
Chris Wren7c516842016-03-01 16:44:32 -05001599 // ACTION: Overview > Page by tapping Overview button
1600 // CATEGORY: GLOBAL_SYSTEM_UI
1601 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001602 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001603
Chris Wren7c516842016-03-01 16:44:32 -05001604 // ACTION: Overview > Select app
1605 // CATEGORY: GLOBAL_SYSTEM_UI
1606 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001607 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001608
Chris Wren7c516842016-03-01 16:44:32 -05001609 // ACTION: View emergency info
1610 // CATEGORY: GLOBAL_SYSTEM_UI
1611 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001612 ACTION_VIEW_EMERGENCY_INFO = 278;
1613
Chris Wren7c516842016-03-01 16:44:32 -05001614 // ACTION: Edit emergency info activity
1615 // CATEGORY: SETTINGS
1616 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001617 ACTION_EDIT_EMERGENCY_INFO = 279;
1618
Chris Wren7c516842016-03-01 16:44:32 -05001619 // ACTION: Edit emergency info field
1620 // CATEGORY: SETTINGS
1621 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001622 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1623
Chris Wren7c516842016-03-01 16:44:32 -05001624 // ACTION: Add emergency contact
1625 // CATEGORY: SETTINGS
1626 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001627 ACTION_ADD_EMERGENCY_CONTACT = 281;
1628
Chris Wren7c516842016-03-01 16:44:32 -05001629 // ACTION: Delete emergency contact
1630 // CATEGORY: SETTINGS
1631 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001632 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1633
Chris Wren7c516842016-03-01 16:44:32 -05001634 // ACTION: Call emergency contact
1635 // CATEGORY: SETTINGS
1636 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001637 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001638
Chris Wren7c516842016-03-01 16:44:32 -05001639 // OPEN: QS Data Saver tile shown
1640 // ACTION: QS Data Saver tile tapped
1641 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001642 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001643
Robin Lee8c1306e2016-02-01 11:37:02 +00001644 // OPEN: Settings > Security > User credentials
1645 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001646 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001647 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001648
Chris Wren7c516842016-03-01 16:44:32 -05001649 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1650 // CATEGORY: GLOBAL_SYSTEM_UI
1651 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001652 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001653
1654 // Logged when the user scrolls through overview manually
1655 OVERVIEW_SCROLL = 287;
1656
1657 // Logged when the overview times out automatically selecting an app
1658 OVERVIEW_SELECT_TIMEOUT = 288;
1659
1660 // Logged when a user dismisses a task in overview
1661 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001662
1663 // Logged when the user modifying the notification importance slider.
1664 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1665
1666 // Logged when the user saves a modification to notification importance. Negative numbers
1667 // indicate the user lowered the importance; positive means they increased it.
1668 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001669
Chris Wren7c516842016-03-01 16:44:32 -05001670 // ACTION: Long-press power button, then tap "Take bug report" option.
1671 // CATEGORY: GLOBAL_SYSTEM_UI
1672 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001673 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1674
Chris Wren7c516842016-03-01 16:44:32 -05001675 // ACTION: Long-press power button, then long-press "Take bug report" option.
1676 // CATEGORY: GLOBAL_SYSTEM_UI
1677 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001678 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1679
Chris Wren7c516842016-03-01 16:44:32 -05001680 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1681 // CATEGORY: SETTINGS
1682 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001683 // Interactive bug report initiated from Settings.
1684 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1685
Chris Wren7c516842016-03-01 16:44:32 -05001686 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1687 // CATEGORY: SETTINGS
1688 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001689 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001690 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1691
Chris Wren7c516842016-03-01 16:44:32 -05001692 // ACTION: User tapped notification action to cancel a bug report
1693 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001694 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001695 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1696
Chris Wren7c516842016-03-01 16:44:32 -05001697 // ACTION: User tapped notification action to launch bug report details screen
1698 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001699 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001700 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1701
Chris Wren7c516842016-03-01 16:44:32 -05001702 // ACTION: User tapped notification action to take adition screenshot on bug report
1703 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001704 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001705 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1706
Chris Wren7c516842016-03-01 16:44:32 -05001707 // ACTION: User tapped notification to share bug report
1708 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001709 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001710 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1711
Chris Wren7c516842016-03-01 16:44:32 -05001712 // ACTION: User changed bug report name using the details screen
1713 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001714 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001715 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1716
Chris Wren7c516842016-03-01 16:44:32 -05001717 // ACTION: User changed bug report title using the details screen
1718 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001719 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001720 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1721
Chris Wren7c516842016-03-01 16:44:32 -05001722 // ACTION: User changed bug report description using the details screen
1723 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001724 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001725 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1726
Chris Wren7c516842016-03-01 16:44:32 -05001727 // ACTION: User tapped Save in the bug report details screen.
1728 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001729 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001730 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1731
Chris Wren7c516842016-03-01 16:44:32 -05001732 // ACTION: User tapped Cancel in the bug report details screen.
1733 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001734 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001735 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001736
1737 // Tuner: Open/close calibrate dialog.
1738 TUNER_CALIBRATE_DISPLAY = 305;
1739
1740 // Tuner: Open/close color and appearance.
1741 TUNER_COLOR_AND_APPEARANCE = 306;
1742
1743 // Tuner: Apply calibrate dialog.
1744 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1745
1746 // Tuner: Open/close night mode.
1747 TUNER_NIGHT_MODE = 308;
1748
1749 // Tuner: Change night mode.
1750 ACTION_TUNER_NIGHT_MODE = 309;
1751
1752 // Tuner: Change night mode auto.
1753 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1754
1755 // Tuner: Change night mode adjust dark theme.
1756 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1757
1758 // Tuner: Change night mode adjust tint.
1759 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1760
1761 // Tuner: Change night mode adjust brightness.
1762 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1763
1764 // Tuner: Change do not disturb in volume panel.
1765 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1766
1767 // Tuner: Change do not disturb volume buttons shortcut.
1768 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001769
1770 // Logs the action the user takes when an app crashed.
1771 ACTION_APP_CRASH = 316;
1772
1773 // Logs the action the user takes when an app ANR'd.
1774 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001775
1776 // Logged when a user double taps the overview button to launch the previous task
1777 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001778
1779 // Logged when we execute an app transition. This indicates the total delay from startActivity
1780 // until the app transition is starting to animate, in milliseconds.
1781 APP_TRANSITION_DELAY_MS = 319;
1782
1783 // Logged when we execute an app transition. This indicates the reason why the transition
1784 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1785 APP_TRANSITION_REASON = 320;
1786
1787 // Logged when we execute an app transition and we drew a starting window. This indicates the
1788 // delay from startActivity until the starting window was drawn.
1789 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1790
1791 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1792 // the delay from startActivity until all windows have been drawn.
1793 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1794
1795 // Logged when we execute an app transition. This indicates the component name of the current
1796 // transition.
1797 APP_TRANSITION_COMPONENT_NAME = 323;
1798
1799 // Logged when we execute an app transition. This indicates whether the process was already
1800 // running.
1801 APP_TRANSITION_PROCESS_RUNNING = 324;
1802
1803 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1804 // the transition was executed.
1805 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001806
Chris Wren38f98812016-07-13 14:28:40 -04001807 // ACTION: app requested access to a scoped directory, user granted it.
1808 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1809 // CATEGORY: GLOBAL_SYSTEM_UI
1810 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001811 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1812
Chris Wren38f98812016-07-13 14:28:40 -04001813 // ACTION: app requested access to a scoped directory, user denied it.
1814 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1815 // CATEGORY: GLOBAL_SYSTEM_UI
1816 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001817 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1818
Chris Wren38f98812016-07-13 14:28:40 -04001819 // ACTION: app requested access to a scoped directory, user granted it.
1820 // PACKAGE: app that requested access
1821 // CATEGORY: GLOBAL_SYSTEM_UI
1822 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001823 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1824
Chris Wren38f98812016-07-13 14:28:40 -04001825 // ACTION: app requested access to a scoped directory, user denied it.
1826 // PACKAGE: app that requested access.
1827 // CATEGORY: GLOBAL_SYSTEM_UI
1828 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001829 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1830
Chris Wren38f98812016-07-13 14:28:40 -04001831 // ACTION: app requested access to a directory user has already been granted
1832 // access before.
1833 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1834 // CATEGORY: GLOBAL_SYSTEM_UI
1835 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001836 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1837
Chris Wren38f98812016-07-13 14:28:40 -04001838 // ACTION: app requested access to a directory user has already been granted
1839 // access before.
1840 // PACKAGE: app that requested access.
1841 // CATEGORY: GLOBAL_SYSTEM_UI
1842 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001843 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001844
Chris Wren38f98812016-07-13 14:28:40 -04001845 // ACTION: Logged when the user slides a notification and reveals the gear
1846 // beneath it.
1847 // CATEGORY: NOTIFICATION
1848 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001849 ACTION_REVEAL_GEAR = 332;
1850
Chris Wren38f98812016-07-13 14:28:40 -04001851 // ACTION: Logged when the user taps on the gear beneath a notification.
1852 // CATEGORY: NOTIFICATION
1853 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001854 ACTION_TOUCH_GEAR = 333;
1855
Ruben Brunke24b9a62016-02-16 21:38:24 -08001856 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001857 // CATEGORY: SETTINGS
1858 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001859 VR_MANAGE_LISTENERS = 334;
1860
Jason Monk6f5354d2016-03-08 14:18:08 -05001861 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001862 // CATEGORY: SETTINGS
1863 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001864 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001865
Jason Monk6f5354d2016-03-08 14:18:08 -05001866 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001867 // CATEGORY: SETTINGS
1868 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001869 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001870
Jason Monk6f5354d2016-03-08 14:18:08 -05001871 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001872 // CATEGORY: SETTINGS
1873 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001874 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001875
Jason Monk6f5354d2016-03-08 14:18:08 -05001876 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001877 // CATEGORY: SETTINGS
1878 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001879 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001880
Jason Monk6f5354d2016-03-08 14:18:08 -05001881 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001882 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001883 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001884
Jason Monk6f5354d2016-03-08 14:18:08 -05001885 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001886 // CATEGORY: SETTINGS
1887 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001888 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001889
Jason Monk6f5354d2016-03-08 14:18:08 -05001890 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001891 // CATEGORY: SETTINGS
1892 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001894
Jason Monk6f5354d2016-03-08 14:18:08 -05001895 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001896 // CATEGORY: SETTINGS
1897 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001898 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001899
Jason Monk6f5354d2016-03-08 14:18:08 -05001900 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001901 // CATEGORY: SETTINGS
1902 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001903 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001904
Jason Monk6f5354d2016-03-08 14:18:08 -05001905 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001906 // CATEGORY: SETTINGS
1907 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001908 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001909
Jason Monk6f5354d2016-03-08 14:18:08 -05001910 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001911 // CATEGORY: SETTINGS
1912 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001913 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001914
Jason Monk6f5354d2016-03-08 14:18:08 -05001915 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001916 // CATEGORY: SETTINGS
1917 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001918 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001919
Jason Monk6f5354d2016-03-08 14:18:08 -05001920 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001921 // CATEGORY: SETTINGS
1922 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001923 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001924
Jason Monk6f5354d2016-03-08 14:18:08 -05001925 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001926 // CATEGORY: SETTINGS
1927 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001928 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001929
Jason Monk6f5354d2016-03-08 14:18:08 -05001930 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001931 // CATEGORY: SETTINGS
1932 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001933 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1934
1935 // Used for generic logging of Settings Preference Persistence, should not be used
1936 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001937 // CATEGORY: SETTINGS
1938 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001939 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001940
Jason Monk6f5354d2016-03-08 14:18:08 -05001941 // Settings -> Apps -> Gear -> Special access
1942 SPECIAL_ACCESS = 351;
1943
Muyuan Lia2129992016-03-03 18:30:39 -08001944 // Logs that the user docks window via shortcut key.
1945 WINDOW_DOCK_SHORTCUTS = 352;
1946
Felipe Lemeadccb992016-03-09 17:40:49 -08001947 // User already denied access to the request folder; action takes an integer
1948 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001949 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001950 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1951
1952 // User already denied access to the request folder; action pass package name
1953 // of calling package.
1954 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1955
1956 // User denied access to the request folder and checked 'Do not ask again';
1957 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001958 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001959 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1960
1961 // User denied access to the request folder and checked 'Do not ask again';
1962 // action pass package name of calling package.
1963 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1964
Winson3b6ba1a2016-03-22 15:37:54 -07001965 // Logged when a user dismisses all task in overview
1966 OVERVIEW_DISMISS_ALL = 357;
1967
Jason Monk96defbe2016-03-29 16:51:03 -04001968 // Quick Settings -> Edit
1969 QS_EDIT = 358;
1970
1971 // Quick Settings -> Edit -> Overflow -> Reset
1972 ACTION_QS_EDIT_RESET = 359;
1973
1974 // QS -> Edit - Drag a tile out of the active tiles.
1975 // The _SPEC contains either the spec of the tile or
1976 // the package of the 3rd party app in the PKG field.
1977 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1978 ACTION_QS_EDIT_REMOVE = 361;
1979
1980 // QS -> Edit - Drag a tile into the active tiles.
1981 // The _SPEC contains either the spec of the tile or
1982 // the package of the 3rd party app in the PKG field.
1983 ACTION_QS_EDIT_ADD_SPEC = 362;
1984 ACTION_QS_EDIT_ADD = 363;
1985
1986 // QS -> Edit - Drag a tile within the active tiles.
1987 // The _SPEC contains either the spec of the tile or
1988 // the package of the 3rd party app in the PKG field.
1989 ACTION_QS_EDIT_MOVE_SPEC = 364;
1990 ACTION_QS_EDIT_MOVE = 365;
1991
1992 // Long-press on a QS tile. Tile spec in package field.
1993 ACTION_QS_LONG_PRESS = 366;
1994
Anna Galuszadad131f2016-03-22 13:49:02 -07001995 // OPEN: SUW Welcome Screen -> Vision Settings
1996 // CATEGORY: SETTINGS
1997 // OS: N
1998 SUW_ACCESSIBILITY = 367;
1999
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002000 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2001 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2002 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002003 // ACTION: New magnification gesture configuration is chosen
2004 // SUBTYPE: 0 is off, 1 is on
2005 // CATEGORY: SETTINGS
2006 // OS: N
2007 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2008
2009 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2010 // ACTION: New font size is chosen
2011 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2012 // CATEGORY: SETTINGS
2013 // OS: N
2014 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2015
2016 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2017 // ACTION: New display size is chosen
2018 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2019 // CATEGORY: SETTINGS
2020 // OS: N
2021 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2022
2023 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2024 // ACTION: New screen reader configuration is chosen
2025 // SUBTYPE: 0 is off, 1 is on
2026 // CATEGORY: SETTINGS
2027 // OS: N
2028 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2029
Jason Monkc3620392016-03-30 15:46:03 -04002030 // ------- Begin N Settings conditionals -----
2031 // Conditionals are the green bars at the top of the settings dashboard
2032 // All conditionals will have visible/hide events onResume/onPause
2033 // but they will also be used as extra ints in the
2034 // dismiss/expand/collapse/click/button events
2035
2036 // swipe away conditional
2037 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2038
2039 // click on collapsed conditional or clicks expand button
2040 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2041
2042 // click collapse button on expanded conditional
2043 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2044
2045 // click main area of expanded conditional
2046 ACTION_SETTINGS_CONDITION_CLICK = 375;
2047
2048 // click a direct button on expanded conditional
2049 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2050
2051 // Airplane mode on
2052 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2053 // AKA Data saver on
2054 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2055 // Battery saver on
2056 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2057 // Cellular data off
2058 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2059 // Do not disturb on
2060 SETTINGS_CONDITION_DND = 381;
2061 // Hotspot on
2062 SETTINGS_CONDITION_HOTSPOT = 382;
2063 // Work profile off
2064 SETTINGS_CONDITION_WORK_MODE = 383;
2065
Jason Monk1b5d87b2016-03-30 16:03:15 -04002066 // ------- Begin N Settings suggestions -----
2067 // Since suggestions come from system apps, suggestions will
2068 // have generic constants and the package providing the suggestion
2069 // will be put in the package field. For suggestions in the Settings
2070 // package, the class name will be filled in instead (since settings
2071 // provides several suggetions).
2072
2073 // Settings shown/hidden on main settings dashboard.
2074 // These are actually visibility events, but visible/hidden doesn't
2075 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002076 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2077 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002078
2079 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002080 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002081
2082 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002083 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002084
Jason Monk397df682016-03-28 15:48:34 -04002085 // Settings > Apps > Gear > Special Access > Premium SMS access
2086 PREMIUM_SMS_ACCESS = 388;
2087
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002088 // Logged when the user resizes the docked stack. Arguments:
2089 // 0: Split 50:50
2090 // 1: Docked smaller
2091 // 2: Docked larger
2092 ACTION_WINDOW_DOCK_RESIZE = 389;
2093
2094 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2095 // 0: Docked gets maximized
2096 // 1: Fullscreen gets maximized
2097 ACTION_WINDOW_UNDOCK_MAX = 390;
2098
2099 // User tried to dock an unresizable app.
2100 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2101
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002102 // System UI Tuner > Other > Power notification controls
2103 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2104
2105 // System UI Tuner > Other > Power notification controls > Toggle on/off
2106 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2107
Chris Wren38f98812016-07-13 14:28:40 -04002108 // Action: user enable / disabled data saver using Settings
2109 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2110 // VALUE: 1 for enabled, 0 for disabled
2111 // CATEGORY: SETTINGS
2112 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002113 ACTION_DATA_SAVER_MODE = 394;
2114
Chris Wren38f98812016-07-13 14:28:40 -04002115 // User whitelisted an app for Data Saver mode; action pass package name of app
2116 // Action: user enable / disabled data saver using Settings
2117 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2118 // or
2119 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2120 // VALUE: package name of APP
2121 // CATEGORY: SETTINGS
2122 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002123 ACTION_DATA_SAVER_WHITELIST = 395;
2124
Chris Wren38f98812016-07-13 14:28:40 -04002125 // User blacklisted an app for Data Saver mode; action pass package name of app
2126 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2127 // VALUE: package name of APP
2128 // CATEGORY: SETTINGS
2129 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002130 ACTION_DATA_SAVER_BLACKLIST = 396;
2131
Adrian Roosceeb04c2016-04-25 14:00:54 -07002132 // User opened a remote input view associated with a notification. Passes package name of app
2133 // that posted the notification. Note that this can also happen transiently during notification
2134 // reinflation.
2135 ACTION_REMOTE_INPUT_OPEN = 397;
2136
2137 // User attempt to send data through a remote input view associated with a notification.
2138 // Passes package name of app that posted the notification. May succeed or fail.
2139 ACTION_REMOTE_INPUT_SEND = 398;
2140
2141 // Failed attempt to send data through a remote input view associated with a
2142 // notification. Passes package name of app that posted the notification.
2143 ACTION_REMOTE_INPUT_FAIL = 399;
2144
2145 // User closed a remote input view associated with a notification. Passes package name of app
2146 // that posted the notification. Note that this can also happen transiently during notification
2147 // reinflation.
2148 ACTION_REMOTE_INPUT_CLOSE = 400;
2149
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002150 // OPEN: Settings > Accounts > Work profile settings
2151 // CATEGORY: SETTINGS
2152 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2153
Jason Monk25118d12016-05-10 13:25:50 -04002154 // Settings -> Dev options -> Convert to file encryption
2155 CONVERT_FBE = 402;
2156
2157 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2158 CONVERT_FBE_CONFIRM = 403;
2159
2160 // Settings -> Dev options -> Running services
2161 RUNNING_SERVICES = 404;
2162
Jason Monka1f697f2016-05-06 15:09:44 -04002163 // The dialog shown by 3P intent to change current webview implementation.
2164 WEBVIEW_IMPLEMENTATION = 405;
2165
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002166 // Settings launched from expanded quick settings.
2167 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2168
Chris Wren698b1702016-05-23 11:16:32 -04002169 // Notification expansion state toggled by the expand affordance.
2170 ACTION_NOTIFICATION_EXPANDER = 407;
2171
2172 // Notification group expansion state toggled by the expand affordance.
2173 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2174
Chris Wren7ee84182016-05-27 13:34:02 -04002175
Chris Wren6abeeb92016-05-26 14:44:38 -04002176 // Notification expansion state toggled by the expand gesture.
2177 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2178
2179 // Notification group expansion state toggled by the expand gesture.
2180 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2181
Bhavik Singh3451da42016-06-01 18:25:59 -07002182 // User performs gesture that activates the ambient display
2183 // 1: Gesture performed is Nudge
2184 // 2: Gesture performed is Pickup
2185 // 4: Gesture performed is Double Tap
2186 ACTION_AMBIENT_GESTURE = 411;
2187
Jason Monk9fa5f822016-05-11 10:26:31 -04002188 // ---- End N Constants, all N constants go above this line ----
2189
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002190 // ------- Begin N App Disambig Shade -----
2191 // Application disambig shade opened or closed with a featured app.
2192 // These are actually visibility events, but visible/hidden doesn't
2193 // take a package, so these are being logged as actions.
2194 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002195 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2196 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002197
2198 // Application disambig shade opened or closed without a featured app.
2199 // These are actually visibility events, but visible/hidden doesn't
2200 // take a package, so these are being logged as actions.
2201 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002202 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2203 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002204
2205 // User opens in an app by pressing “Always” in the application disambig shade.
2206 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002207 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002208
2209 // User opens in an app by pressing “Just Once” in the application disambig shade.
2210 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002211 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002212
2213 // User opens in an app by tapping on its name in the application disambig shade.
2214 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002215 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002216
Daniel Nishi010aa492016-05-11 09:42:24 -07002217 // OPEN: Settings > Internal storage > Storage manager
2218 // CATEGORY: SETTINGS
2219 STORAGE_MANAGER_SETTINGS = 458;
2220
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002221 // OPEN: Settings -> Gestures
2222 // CATEGORY: SETTINGS
2223 SETTINGS_GESTURES = 459;
2224
Daniel Nishi597e67f2016-05-18 13:56:13 -07002225 // ------ Begin Deletion Helper ------
2226 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2227 // SUBTYPE: false is off, true is on
2228 // CATEGORY: SETTINGS
2229 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002230
Daniel Nishi597e67f2016-05-18 13:56:13 -07002231 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2232 // SUBTYPE: false is off, true is on
2233 // CATEGORY: SETTINGS
2234 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2235
2236 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2237 // CATEGORY: SETTINGS
2238 // PACKAGE: Unchecked app
2239 ACTION_DELETION_SELECTION_APP_ON = 462;
2240
2241 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2242 // CATEGORY: SETTINGS
2243 // PACKAGE: Checked app
2244 ACTION_DELETION_SELECTION_APP_OFF = 463;
2245
2246 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2247 // SUBTYPE: false is expanded, true is collapsed
2248 // CATEGORY: SETTINGS
2249 ACTION_DELETION_APPS_COLLAPSED = 464;
2250
2251 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2252 // SUBTYPE: false is off, true is on
2253 // CATEGORY: SETTINGS
2254 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2255
2256 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2257 // SUBTYPE: false is expanded, true is collapsed
2258 // CATEGORY: SETTINGS
2259 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2260
2261 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2262 // CATEGORY: SETTINGS
2263 ACTION_DELETION_HELPER_CLEAR = 467;
2264
2265 // ACTION: Settings > Storage > Free Up Space > Cancel
2266 // CATEGORY: SETTINGS
2267 ACTION_DELETION_HELPER_CANCEL = 468;
2268
2269 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2270 // CATEGORY: SETTINGS
2271 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2272
2273 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2274 // CATEGORY: SETTINGS
2275 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2276
2277 // Deletion helper encountered an error during package deletion.
2278 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2279
2280 // Deletion helper encountered an error during downloads folder deletion.
2281 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2282
2283 // Deletion helper encountered an error during photo and video deletion.
2284 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2285
Fan Zhang5e956e82016-05-06 10:51:47 -07002286 // OPEN: Settings (root page if there are multiple tabs)
2287 // CATEGORY: SETTINGS
2288 DASHBOARD_CONTAINER = 474;
2289
2290 // OPEN: Settings -> SUPPORT TAB
2291 // CATEGORY: SETTINGS
2292 SUPPORT_FRAGMENT = 475;
2293
2294 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002295 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002296 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002297
2298 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002299 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002300 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2301
Fan Zhanga1985502016-06-16 16:48:38 -07002302 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002303 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002304 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2305
2306 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002307 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002308 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2309
2310 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002311 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002312 ACTION_SUPPORT_SIGN_IN = 480;
2313
2314 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002315 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002316 ACTION_SUPPORT_PHONE = 481;
2317
2318 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002319 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002320 ACTION_SUPPORT_CHAT = 482;
2321
2322 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002323 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002324 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2325
2326 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002327 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002328 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2329
Fan Zhang80807212016-06-30 12:26:55 -07002330 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002331 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002332 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2333
2334 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002335 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002336 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2337
2338 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002339 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002340 ACTION_SUPPORT_DIAL_TOLLED = 487;
2341
Justin Klaassen19494272016-07-18 21:38:24 -07002342 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002343 // CATEGORY: SETTINGS
2344 NIGHT_DISPLAY_SETTINGS = 488;
2345
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002346 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002347 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002348 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2349
Jason Monk484fd362016-07-13 15:24:32 -04002350 // Settings launched from collapsed quick settings.
2351 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2352
Justin Klaassen19494272016-07-18 21:38:24 -07002353 // OPEN: QS Night Light tile shown
2354 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002355 // SUBTYPE: 0 is off, 1 is on
2356 // CATEGORY: QUICK_SETTINGS
2357 QS_NIGHT_DISPLAY = 491;
2358
Justin Klaassen19494272016-07-18 21:38:24 -07002359 // Night Light on
2360 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2361
Doris Ling3c00afb2016-07-19 17:04:21 -07002362 // System navigation key up.
2363 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2364
2365 // System navigation key down.
2366 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2367
Doris Ling6dd3e462016-08-04 13:17:27 -07002368 // OPEN: Settings > Display -> Ambient Display
2369 // CATEGORY: SETTINGS
2370 ACTION_AMBIENT_DISPLAY = 495;
2371
Adrian Roos159ef7b2016-02-25 11:58:32 -08002372 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2373
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002374 // ACTION: The lockscreen gets shown because the SIM card was removed
2375 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2376 // CATEGORY: GLOBAL_SYSTEM_UI
2377 // OS: N-MR2
2378 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2379
2380 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2381
Clara Bayarric17a5982016-04-15 12:26:47 +01002382 // ------- Begin N Keyboard Shortcuts Helper -----
2383 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002384 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002385
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002386 // OPEN: Print Preview screen
2387 // Package: Package of app where print job is from
2388 PRINT_PREVIEW = 501;
2389
2390 // OPEN: User expands full print job options shade in print preview.
2391 PRINT_JOB_OPTIONS = 502;
2392
2393 // OPEN: “All Printers” screen for selecting printer
2394 // Subtype: # of printers listed
2395 PRINT_ALL_PRINTERS = 503;
2396
2397 // OPEN: “Add Printers” screen for adding printers
2398 // Subtype: # of enabled print service listed
2399 PRINT_ADD_PRINTERS = 504;
2400
2401 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2402 // Package: Package of print service.
2403 ACTION_PRINT = 505;
2404
2405 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2406 // Count all ACTION_PRINTER_SELECT_ALL actions.
2407 // Package: Package of print service tied to printer
2408 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2409
2410 // ACTION: User selects a printer from the “All printers” screen.
2411 // Package: Package of print service tied to printer
2412 ACTION_PRINTER_SELECT_ALL = 507;
2413
2414 // ACTION: User changes an option for the print job from print preview.
2415 // Subtype: 1: Copies
2416 // 2: Color mode
2417 // 3: Duplex mode
2418 // 4: Media (==Paper) size
2419 // 5: Orientation
2420 // 6: Page range
2421 // Package: Package of print service tied to printer
2422 ACTION_PRINT_JOB_OPTIONS = 508;
2423
2424 // ACTION: User searches for printer from All Printers
2425 ACTION_PRINTER_SEARCH = 509;
2426
2427 // ACTION: User selects “Add print service” button from All Printers
2428 ACTION_PRINT_SERVICE_ADD = 510;
2429
2430 // ACTION: User Enables/Disables Print Service via any means.
2431 // Subtype: 0: Enabled
2432 // 1: Disabled
2433 ACTION_PRINT_SERVICE_TOGGLE = 511;
2434
2435 // ACTION: User installs print recommended print service
2436 // Package: Package of print service
2437 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2438
Doris Ling88a6b162016-08-08 16:17:43 -07002439 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2440 // SUBTYPE: sub settings classname
2441 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2442
Fan Zhang92c60382016-08-08 14:03:53 -07002443 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2444 USER_DICTIONARY_SETTINGS = 514;
2445
2446 // OPEN: Settings > Date & time > Select time zone
2447 ZONE_PICKER = 515;
2448
2449 // OPEN: Settings > Security > Device administrators
2450 DEVICE_ADMIN_SETTINGS = 516;
2451
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002452 // ACTION: Managed provisioning was launched to set this package as DPC app.
2453 // PACKAGE: DPC's package name.
2454 PROVISIONING_DPC_PACKAGE_NAME = 517;
2455
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002456 // ACTION: Managed provisioning triggered DPC installation.
2457 // PACKAGE: Package name of package which installed DPC.
2458 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2459
2460 // ACTION: Logged when provisioning activity finishes.
2461 // TIME: Indicates time taken by provisioning activity to finish in MS.
2462 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2463
2464 // ACTION: Logged when preprovisioning activity finishes.
2465 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2466 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2467
2468 // ACTION: Logged when encrypt device activity finishes.
2469 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2470 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2471
2472 // ACTION: Logged when web activity finishes.
2473 // TIME: Indicates total time taken by web activity to finish in MS.
2474 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2475
2476 // ACTION: Logged when trampoline activity finishes.
2477 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2478 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2479
2480 // ACTION: Logged when encryption activity finishes.
2481 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2482 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2483
2484 // ACTION: Logged when finalization activity finishes.
2485 // TIME: Indicates time taken by finalization activity to finish in MS.
2486 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002487
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002488 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002489 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002490
Fan Zhang95094182016-08-24 18:14:16 -07002491 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002492 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002493
2494 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002495 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002496
2497 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002498 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002499
2500 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002501 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002502
2503 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002504 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002505
Fan Zhangc1352ae2016-09-16 12:46:11 -07002506 // OPEN: Settings > Security > Use one lock dialog
2507 DIALOG_UNIFICATION_CONFIRMATION = 532;
2508
2509 // OPEN: Settings > Security > User Credential
2510 DIALOG_USER_CREDENTIAL = 533;
2511
2512 // OPEN: Settings > Accounts > Remove account
2513 DIALOG_REMOVE_USER = 534;
2514
2515 // OPEN: Settings > Accounts > Confirm auto sync dialog
2516 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2517
2518 // OPEN: Settings > Apps > Dialog for running service details
2519 DIALOG_RUNNIGN_SERVICE = 536;
2520
2521 // OPEN: Settings > Dialog for hiding home settings
2522 DIALOG_NO_HOME = 537;
2523
2524 // OPEN: Settings > Bluetooth > Rename this device
2525 DIALOG_BLUETOOTH_RENAME = 538;
2526
2527 // OPEN: Settings > Bluetooth > Paired device profile
2528 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2529
2530 // OPEN: Settings > Battery optimization > details for app
2531 DIALOG_HIGH_POWER_DETAILS = 540;
2532
2533 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2534 DIALOG_KEYBOARD_LAYOUT = 541;
2535
2536 // OPEN: Settings > Wifi > WPS Setup dialog
2537 DIALOG_WPS_SETUP = 542;
2538
2539 // OPEN: Settings > WIFI Scan permission dialog
2540 DIALOG_WIFI_SCAN_MODE = 543;
2541
2542 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2543 DIALOG_WIFI_SKIP = 544;
2544
2545 // OPEN: Settings > Wireless > VPN > Config dialog
2546 DIALOG_LEGACY_VPN_CONFIG = 545;
2547
2548 // OPEN: Settings > Wireless > VPN > Config dialog for app
2549 DIALOG_VPN_APP_CONFIG = 546;
2550
2551 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2552 DIALOG_VPN_CANNOT_CONNECT = 547;
2553
2554 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2555 DIALOG_VPN_REPLACE_EXISTING = 548;
2556
2557 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2558 DIALOG_BILLING_CYCLE = 549;
2559
2560 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2561 DIALOG_BILLING_BYTE_LIMIT = 550;
2562
2563 // OPEN: Settings > Billing cycle > turn on data limit dialog
2564 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2565
2566 // OPEN: Settings > Service > Turn off notification access dialog
2567 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2568
2569 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2570 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2571
2572 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2573 DIALOG_ZEN_ACCESS_GRANT = 554;
2574
2575 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2576 DIALOG_ZEN_ACCESS_REVOKE = 555;
2577
2578 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2579 DIALOG_ZEN_TIMEPICKER = 556;
2580
2581 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2582 DIALOG_SERVICE_ACCESS_WARNING = 557;
2583
2584 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2585 DIALOG_APP_INFO_ACTION = 558;
2586
2587 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2588 DIALOG_VOLUME_FORGET = 559;
2589
2590 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2591 DIALOG_VOLUME_SLOW_WARNING = 560;
2592
2593 // OPEN: Settings > Storage > Dialog for initializing a volume
2594 DIALOG_VOLUME_INIT = 561;
2595
2596 // OPEN: Settings > Storage > Dialog for unmounting a volume
2597 DIALOG_VOLUME_UNMOUNT = 562;
2598
2599 // OPEN: Settings > Storage > Dialog for renaming a volume
2600 DIALOG_VOLUME_RENAME = 563;
2601
2602 // OPEN: Settings > Storage > Dialog for clear cache
2603 DIALOG_STORAGE_CLEAR_CACHE = 564;
2604
2605 // OPEN: Settings > Storage > Dialog for system info
2606 DIALOG_STORAGE_SYSTEM_INFO = 565;
2607
2608 // OPEN: Settings > Storage > Dialog for other info
2609 DIALOG_STORAGE_OTHER_INFO = 566;
2610
2611 // OPEN: Settings > Storage > Dialog for user info
2612 DIALOG_STORAGE_USER_INFO = 567;
2613
2614 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2615 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2616
2617 // OPEN: Settings > Add fingerprint > Error dialog
2618 DIALOG_FINGERPINT_ERROR = 569;
2619
2620 // OPEN: Settings > Fingerprint > Rename or delete dialog
2621 DIALOG_FINGERPINT_EDIT = 570;
2622
2623 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2624 DIALOG_FINGERPINT_DELETE_LAST = 571;
2625
2626 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2627 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2628
2629 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2630 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2631
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002632 // OPEN: Settings > Proxy Selector error dialog
2633 DIALOG_PROXY_SELECTOR_ERROR = 574;
2634
2635 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2636 DIALOG_WIFI_P2P_DISCONNECT = 575;
2637
2638 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2639 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2640
2641 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2642 DIALOG_WIFI_P2P_RENAME = 577;
2643
2644 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2645 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2646
2647 // OPEN: Settings > APN > Restore default dialog
2648 DIALOG_APN_RESTORE_DEFAULT = 579;
2649
2650 // OPEN: Settings > Dream > When to dream dialog
2651 DIALOG_DREAM_START_DELAY = 580;
2652
2653 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2654 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2655
2656 // OPEN: Settings > Tether > AP setting dialog
2657 DIALOG_AP_SETTINGS = 582;
2658
2659 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2660 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2661
2662 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2663 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2664
2665 // OPEN: Settings > Account > Remove account dialog
2666 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2667
2668 // OPEN: Settings > Account > Remove account failed dialog
2669 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2670
2671 // OPEN: Settings > Account > Cannot do onetime sync dialog
2672 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2673
2674 // OPEN: Settings > Display > Night light > Set start time dialog
2675 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2676
2677 // OPEN: Settings > Display > Night light > Set end time dialog
2678 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2679
2680 // OPEN: Settings > User > Edit info dialog
2681 DIALOG_USER_EDIT = 590;
2682
2683 // OPEN: Settings > User > Confirm remove dialog
2684 DIALOG_USER_REMOVE = 591;
2685
2686 // OPEN: Settings > User > Enable calling dialog
2687 DIALOG_USER_ENABLE_CALLING = 592;
2688
2689 // OPEN: Settings > User > Enable calling and sms dialog
2690 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2691
2692 // OPEN: Settings > User > Cannot manage device message dialog
2693 DIALOG_USER_CANNOT_MANAGE = 594;
2694
2695 // OPEN: Settings > User > Add user dialog
2696 DIALOG_USER_ADD = 595;
2697
2698 // OPEN: Settings > User > Setup user dialog
2699 DIALOG_USER_SETUP = 596;
2700
2701 // OPEN: Settings > User > Setup profile dialog
2702 DIALOG_USER_SETUP_PROFILE = 597;
2703
2704 // OPEN: Settings > User > Choose user type dialog
2705 DIALOG_USER_CHOOSE_TYPE = 598;
2706
2707 // OPEN: Settings > User > Need lockscreen dialog
2708 DIALOG_USER_NEED_LOCKSCREEN = 599;
2709
2710 // OPEN: Settings > User > Confirm exit guest mode dialog
2711 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2712
2713 // OPEN: Settings > User > Edit user profile dialog
2714 DIALOG_USER_EDIT_PROFILE = 601;
2715
2716 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2717 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2718
2719 // OPEN: Settings > Wifi > Edit AP dialog
2720 DIALOG_WIFI_AP_EDIT = 603;
2721
2722 // OPEN: Settings > Wifi > PBC Config dialog
2723 DIALOG_WIFI_PBC = 604;
2724
2725 // OPEN: Settings > Wifi > Display pin dialog
2726 DIALOG_WIFI_PIN = 605;
2727
2728 // OPEN: Settings > Wifi > Write config to NFC dialog
2729 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002730 // OPEN: Settings > Date > Date picker dialog
2731 DIALOG_DATE_PICKER = 607;
2732
2733 // OPEN: Settings > Date > Time picker dialog
2734 DIALOG_TIME_PICKER = 608;
2735
2736 // OPEN: Settings > Wireless > Manage wireless plan dialog
2737 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002738
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002739 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002740 PROVISIONING_NETWORK_TYPE = 610;
2741
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002742 // ACTION: Logs action which triggered provisioning.
2743 PROVISIONING_ACTION = 611;
2744
Mahaver Chopraab282072016-10-06 19:19:23 +01002745 // ACTION: Logs extra passed by the dpc while provisioning.
2746 PROVISIONING_EXTRA = 612;
2747
Salvador Martinez64867c12016-10-14 15:25:09 -07002748 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2749 BLUETOOTH_DIALOG_FRAGMENT = 613;
2750
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002751 // ACTION: Logs provisioning started by zero touch.
2752 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2753
2754 // ACTION: Logs provisioning started by NFC bump.
2755 PROVISIONING_ENTRY_POINT_NFC = 615;
2756
2757 // ACTION: Logs provisioning started using QR code.
2758 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2759
2760 // ACTION: Logs provisioning started using adb.
2761 PROVISIONING_ENTRY_POINT_ADB = 617;
2762
2763 // ACTION: Logs provisioning started by trusted source.
2764 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2765
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002766 // ACTION: Logged when copy account task finishes.
2767 // TIME: Indicates time taken by copy account task to finish in MS.
2768 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2769
2770 // ACTION: Logged when create profile task finishes.
2771 // TIME: Indicates time taken by create profile task to finish in MS.
2772 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2773
2774 // ACTION: Logged when start profile task finishes.
2775 // TIME: Indicates time taken by start profile task to finish in MS.
2776 PROVISIONING_START_PROFILE_TASK_MS = 621;
2777
2778 // ACTION: Logged when download package task finishes.
2779 // TIME: Indicates time taken by download package task to finish in MS.
2780 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2781
2782 // ACTION: Logged when install package task finishes.
2783 // TIME: Indicates time taken by install package task to finish in MS.
2784 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2785
2786 // ACTION: User cancelled provisioning.
2787 PROVISIONING_CANCELLED = 624;
2788
2789 // ACTION: Logged when provisioning throws an error.
2790 PROVISIONING_ERROR = 625;
2791
2792 // ACTION: Logs the status of copying user account during provisioning.
2793 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2794
2795 // ACTION: Logs the end to end time taken by all provisioning tasks.
2796 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2797
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002798 // OPEN: Settings > Privacy
2799 // CATEGORY: SETTINGS
2800 // OS: O
2801 ENTERPRISE_PRIVACY_SETTINGS = 628;
2802
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002803 // ACTION: Longpress on a TextView.
2804 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2805 // CATEGORY: TEXT_CONTROLS
2806 // OS: O
2807 TEXT_LONGPRESS = 629;
2808
Chris Wren3824c392017-11-27 12:54:14 -05002809 // ACTION: An app requested an unknown permission
2810 // PACKAGE: The package name of the app requesting the permission
2811 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002812 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2813
Chris Wren3824c392017-11-27 12:54:14 -05002814 // ACTION: An app was granted an unknown permission
2815 // PACKAGE: The package name of the app that was granted the permission
2816 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002817 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2818
Chris Wren3824c392017-11-27 12:54:14 -05002819 // ACTION: An app requested an unknown permission and the request was denied
2820 // PACKAGE: The package name of the app requesting the permission
2821 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002822 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2823
Chris Wren3824c392017-11-27 12:54:14 -05002824 // ACTION: An unknown permission was revoked for an app
2825 // PACKAGE: The package name of the app the permission was revoked for
2826 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002827 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2828
Chris Wren3824c392017-11-27 12:54:14 -05002829 // ACTION: An app requested the permission READ_CALENDAR
2830 // PACKAGE: The package name of the app requesting the permission
2831 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002832 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2833
Chris Wren3824c392017-11-27 12:54:14 -05002834 // ACTION: An app was granted the permission READ_CALENDAR
2835 // PACKAGE: The package name of the app that was granted the permission
2836 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002837 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2838
Chris Wren3824c392017-11-27 12:54:14 -05002839 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2840 // PACKAGE: The package name of the app requesting the permission
2841 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002842 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2843
Chris Wren3824c392017-11-27 12:54:14 -05002844 // ACTION: The permission READ_CALENDAR was revoked for an app
2845 // PACKAGE: The package name of the app the permission was revoked for
2846 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002847 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2848
Chris Wren3824c392017-11-27 12:54:14 -05002849 // ACTION: An app requested the permission WRITE_CALENDAR
2850 // PACKAGE: The package name of the app requesting the permission
2851 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002852 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2853
Chris Wren3824c392017-11-27 12:54:14 -05002854 // ACTION: An app was granted the permission WRITE_CALENDAR
2855 // PACKAGE: The package name of the app that was granted the permission
2856 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002857 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2858
Chris Wren3824c392017-11-27 12:54:14 -05002859 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2860 // PACKAGE: The package name of the app requesting the permission
2861 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002862 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2863
Chris Wren3824c392017-11-27 12:54:14 -05002864 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2865 // PACKAGE: The package name of the app the permission was revoked for
2866 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002867 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2868
Chris Wren3824c392017-11-27 12:54:14 -05002869 // ACTION: An app requested the permission CAMERA
2870 // PACKAGE: The package name of the app requesting the permission
2871 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002872 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2873
Chris Wren3824c392017-11-27 12:54:14 -05002874 // ACTION: An app was granted the permission CAMERA
2875 // PACKAGE: The package name of the app that was granted the permission
2876 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002877 ACTION_PERMISSION_GRANT_CAMERA = 643;
2878
Chris Wren3824c392017-11-27 12:54:14 -05002879 // ACTION: An app requested the permission CAMERA and the request was denied
2880 // PACKAGE: The package name of the app requesting the permission
2881 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002882 ACTION_PERMISSION_DENIED_CAMERA = 644;
2883
Chris Wren3824c392017-11-27 12:54:14 -05002884 // ACTION: The permission CAMERA was revoked for an app
2885 // PACKAGE: The package name of the app the permission was revoked for
2886 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002887 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2888
Chris Wren3824c392017-11-27 12:54:14 -05002889 // ACTION: An app requested the permission READ_CONTACTS
2890 // PACKAGE: The package name of the app requesting the permission
2891 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002892 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2893
Chris Wren3824c392017-11-27 12:54:14 -05002894 // ACTION: An app was granted the permission READ_CONTACTS
2895 // PACKAGE: The package name of the app that was granted the permission
2896 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002897 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2898
Chris Wren3824c392017-11-27 12:54:14 -05002899 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2900 // PACKAGE: The package name of the app requesting the permission
2901 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002902 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2903
Chris Wren3824c392017-11-27 12:54:14 -05002904 // ACTION: The permission READ_CONTACTS was revoked for an app
2905 // PACKAGE: The package name of the app the permission was revoked for
2906 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002907 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2908
Chris Wren3824c392017-11-27 12:54:14 -05002909 // ACTION: An app requested the permission WRITE_CONTACTS
2910 // PACKAGE: The package name of the app requesting the permission
2911 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002912 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2913
Chris Wren3824c392017-11-27 12:54:14 -05002914 // ACTION: An app was granted the permission WRITE_CONTACTS
2915 // PACKAGE: The package name of the app that was granted the permission
2916 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002917 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2918
Chris Wren3824c392017-11-27 12:54:14 -05002919 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2920 // PACKAGE: The package name of the app requesting the permission
2921 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002922 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2923
Chris Wren3824c392017-11-27 12:54:14 -05002924 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2925 // PACKAGE: The package name of the app the permission was revoked for
2926 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002927 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2928
Chris Wren3824c392017-11-27 12:54:14 -05002929 // ACTION: An app requested the permission GET_ACCOUNTS
2930 // PACKAGE: The package name of the app requesting the permission
2931 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002932 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2933
Chris Wren3824c392017-11-27 12:54:14 -05002934 // ACTION: An app was granted the permission GET_ACCOUNTS
2935 // PACKAGE: The package name of the app that was granted the permission
2936 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002937 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2938
Chris Wren3824c392017-11-27 12:54:14 -05002939 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2940 // PACKAGE: The package name of the app requesting the permission
2941 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002942 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2943
Chris Wren3824c392017-11-27 12:54:14 -05002944 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2945 // PACKAGE: The package name of the app the permission was revoked for
2946 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002947 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2948
Chris Wren3824c392017-11-27 12:54:14 -05002949 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2950 // PACKAGE: The package name of the app requesting the permission
2951 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002952 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2953
Chris Wren3824c392017-11-27 12:54:14 -05002954 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2955 // PACKAGE: The package name of the app that was granted the permission
2956 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002957 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2958
Chris Wren3824c392017-11-27 12:54:14 -05002959 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2960 // PACKAGE: The package name of the app requesting the permission
2961 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002962 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2963
Chris Wren3824c392017-11-27 12:54:14 -05002964 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2965 // PACKAGE: The package name of the app the permission was revoked for
2966 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002967 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2968
Chris Wren3824c392017-11-27 12:54:14 -05002969 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2970 // PACKAGE: The package name of the app requesting the permission
2971 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002972 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2973
Chris Wren3824c392017-11-27 12:54:14 -05002974 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2975 // PACKAGE: The package name of the app that was granted the permission
2976 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002977 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2978
Chris Wren3824c392017-11-27 12:54:14 -05002979 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2980 // PACKAGE: The package name of the app requesting the permission
2981 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002982 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2983
Chris Wren3824c392017-11-27 12:54:14 -05002984 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2985 // PACKAGE: The package name of the app the permission was revoked for
2986 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002987 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2988
Chris Wren3824c392017-11-27 12:54:14 -05002989 // ACTION: An app requested the permission RECORD_AUDIO
2990 // PACKAGE: The package name of the app requesting the permission
2991 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002992 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2993
Chris Wren3824c392017-11-27 12:54:14 -05002994 // ACTION: An app was granted the permission RECORD_AUDIO
2995 // PACKAGE: The package name of the app that was granted the permission
2996 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002997 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2998
Chris Wren3824c392017-11-27 12:54:14 -05002999 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3000 // PACKAGE: The package name of the app requesting the permission
3001 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003002 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3003
Chris Wren3824c392017-11-27 12:54:14 -05003004 // ACTION: The permission RECORD_AUDIO was revoked for an app
3005 // PACKAGE: The package name of the app the permission was revoked for
3006 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003007 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3008
Chris Wren3824c392017-11-27 12:54:14 -05003009 // ACTION: An app requested the permission READ_PHONE_STATE
3010 // PACKAGE: The package name of the app requesting the permission
3011 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003012 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3013
Chris Wren3824c392017-11-27 12:54:14 -05003014 // ACTION: An app was granted the permission READ_PHONE_STATE
3015 // PACKAGE: The package name of the app that was granted the permission
3016 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003017 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3018
Chris Wren3824c392017-11-27 12:54:14 -05003019 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3020 // PACKAGE: The package name of the app requesting the permission
3021 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003022 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3023
Chris Wren3824c392017-11-27 12:54:14 -05003024 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3025 // PACKAGE: The package name of the app the permission was revoked for
3026 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003027 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3028
Chris Wren3824c392017-11-27 12:54:14 -05003029 // ACTION: An app requested the permission CALL_PHONE
3030 // PACKAGE: The package name of the app requesting the permission
3031 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003032 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3033
Chris Wren3824c392017-11-27 12:54:14 -05003034 // ACTION: An app was granted the permission CALL_PHONE
3035 // PACKAGE: The package name of the app that was granted the permission
3036 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003037 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3038
Chris Wren3824c392017-11-27 12:54:14 -05003039 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3040 // PACKAGE: The package name of the app requesting the permission
3041 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003042 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3043
Chris Wren3824c392017-11-27 12:54:14 -05003044 // ACTION: The permission CALL_PHONE was revoked for an app
3045 // PACKAGE: The package name of the app the permission was revoked for
3046 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003047 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3048
Chris Wren3824c392017-11-27 12:54:14 -05003049 // ACTION: An app requested the permission READ_CALL_LOG
3050 // PACKAGE: The package name of the app requesting the permission
3051 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003052 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3053
Chris Wren3824c392017-11-27 12:54:14 -05003054 // ACTION: An app was granted the permission READ_CALL_LOG
3055 // PACKAGE: The package name of the app that was granted the permission
3056 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003057 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3058
Chris Wren3824c392017-11-27 12:54:14 -05003059 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3060 // PACKAGE: The package name of the app requesting the permission
3061 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003062 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3063
Chris Wren3824c392017-11-27 12:54:14 -05003064 // ACTION: The permission READ_CALL_LOG was revoked for an app
3065 // PACKAGE: The package name of the app the permission was revoked for
3066 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003067 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3068
Chris Wren3824c392017-11-27 12:54:14 -05003069 // ACTION: An app requested the permission WRITE_CALL_LOG
3070 // PACKAGE: The package name of the app requesting the permission
3071 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003072 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3073
Chris Wren3824c392017-11-27 12:54:14 -05003074 // ACTION: An app was granted the permission WRITE_CALL_LOG
3075 // PACKAGE: The package name of the app that was granted the permission
3076 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003077 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3078
Chris Wren3824c392017-11-27 12:54:14 -05003079 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3080 // PACKAGE: The package name of the app requesting the permission
3081 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003082 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3083
Chris Wren3824c392017-11-27 12:54:14 -05003084 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3085 // PACKAGE: The package name of the app the permission was revoked for
3086 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003087 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3088
Chris Wren3824c392017-11-27 12:54:14 -05003089 // ACTION: An app requested the permission ADD_VOICEMAIL
3090 // PACKAGE: The package name of the app requesting the permission
3091 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003092 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3093
Chris Wren3824c392017-11-27 12:54:14 -05003094 // ACTION: An app was granted the permission ADD_VOICEMAIL
3095 // PACKAGE: The package name of the app that was granted the permission
3096 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003097 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3098
Chris Wren3824c392017-11-27 12:54:14 -05003099 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3100 // PACKAGE: The package name of the app requesting the permission
3101 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003102 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3103
Chris Wren3824c392017-11-27 12:54:14 -05003104 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3105 // PACKAGE: The package name of the app the permission was revoked for
3106 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003107 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3108
Chris Wren3824c392017-11-27 12:54:14 -05003109 // ACTION: An app requested the permission USE_SIP
3110 // PACKAGE: The package name of the app requesting the permission
3111 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003112 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3113
Chris Wren3824c392017-11-27 12:54:14 -05003114 // ACTION: An app was granted the permission USE_SIP
3115 // PACKAGE: The package name of the app that was granted the permission
3116 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003117 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3118
Chris Wren3824c392017-11-27 12:54:14 -05003119 // ACTION: An app requested the permission USE_SIP and the request was denied
3120 // PACKAGE: The package name of the app requesting the permission
3121 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003122 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3123
Chris Wren3824c392017-11-27 12:54:14 -05003124 // ACTION: The permission USE_SIP was revoked for an app
3125 // PACKAGE: The package name of the app the permission was revoked for
3126 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003127 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3128
Chris Wren3824c392017-11-27 12:54:14 -05003129 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3130 // PACKAGE: The package name of the app requesting the permission
3131 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003132 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3133
Chris Wren3824c392017-11-27 12:54:14 -05003134 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3135 // PACKAGE: The package name of the app that was granted the permission
3136 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003137 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3138
Chris Wren3824c392017-11-27 12:54:14 -05003139 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3140 // PACKAGE: The package name of the app requesting the permission
3141 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003142 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3143
Chris Wren3824c392017-11-27 12:54:14 -05003144 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3145 // PACKAGE: The package name of the app the permission was revoked for
3146 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003147 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3148
Chris Wren3824c392017-11-27 12:54:14 -05003149 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3150 // PACKAGE: The package name of the app requesting the permission
3151 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003152 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3153
Chris Wren3824c392017-11-27 12:54:14 -05003154 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3155 // PACKAGE: The package name of the app that was granted the permission
3156 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003157 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3158
Chris Wren3824c392017-11-27 12:54:14 -05003159 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3160 // PACKAGE: The package name of the app requesting the permission
3161 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003162 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3163
Chris Wren3824c392017-11-27 12:54:14 -05003164 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3165 // PACKAGE: The package name of the app the permission was revoked for
3166 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003167 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3168
Chris Wren3824c392017-11-27 12:54:14 -05003169 // ACTION: An app requested the permission BODY_SENSORS
3170 // PACKAGE: The package name of the app requesting the permission
3171 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003172 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3173
Chris Wren3824c392017-11-27 12:54:14 -05003174 // ACTION: An app was granted the permission BODY_SENSORS
3175 // PACKAGE: The package name of the app that was granted the permission
3176 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003177 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3178
Chris Wren3824c392017-11-27 12:54:14 -05003179 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3180 // PACKAGE: The package name of the app requesting the permission
3181 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003182 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3183
Chris Wren3824c392017-11-27 12:54:14 -05003184 // ACTION: The permission BODY_SENSORS was revoked for an app
3185 // PACKAGE: The package name of the app the permission was revoked for
3186 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003187 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3188
Chris Wren3824c392017-11-27 12:54:14 -05003189 // ACTION: An app requested the permission SEND_SMS
3190 // PACKAGE: The package name of the app requesting the permission
3191 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003192 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3193
Chris Wren3824c392017-11-27 12:54:14 -05003194 // ACTION: An app was granted the permission SEND_SMS
3195 // PACKAGE: The package name of the app that was granted the permission
3196 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003197 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3198
Chris Wren3824c392017-11-27 12:54:14 -05003199 // ACTION: An app requested the permission SEND_SMS and the request was denied
3200 // PACKAGE: The package name of the app requesting the permission
3201 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003202 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3203
Chris Wren3824c392017-11-27 12:54:14 -05003204 // ACTION: The permission SEND_SMS was revoked for an app
3205 // PACKAGE: The package name of the app the permission was revoked for
3206 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003207 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3208
Chris Wren3824c392017-11-27 12:54:14 -05003209 // ACTION: An app requested the permission RECEIVE_SMS
3210 // PACKAGE: The package name of the app requesting the permission
3211 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003212 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3213
Chris Wren3824c392017-11-27 12:54:14 -05003214 // ACTION: An app was granted the permission RECEIVE_SMS
3215 // PACKAGE: The package name of the app that was granted the permission
3216 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003217 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3218
Chris Wren3824c392017-11-27 12:54:14 -05003219 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3220 // PACKAGE: The package name of the app requesting the permission
3221 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003222 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3223
Chris Wren3824c392017-11-27 12:54:14 -05003224 // ACTION: The permission RECEIVE_SMS was revoked for an app
3225 // PACKAGE: The package name of the app the permission was revoked for
3226 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003227 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3228
Chris Wren3824c392017-11-27 12:54:14 -05003229 // ACTION: An app requested the permission READ_SMS
3230 // PACKAGE: The package name of the app requesting the permission
3231 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003232 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3233
Chris Wren3824c392017-11-27 12:54:14 -05003234 // ACTION: An app was granted the permission READ_SMS
3235 // PACKAGE: The package name of the app that was granted the permission
3236 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003237 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3238
Chris Wren3824c392017-11-27 12:54:14 -05003239 // ACTION: An app requested the permission READ_SMS and the request was denied
3240 // PACKAGE: The package name of the app requesting the permission
3241 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003242 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3243
Chris Wren3824c392017-11-27 12:54:14 -05003244 // ACTION: The permission READ_SMS was revoked for an app
3245 // PACKAGE: The package name of the app the permission was revoked for
3246 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003247 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3248
Chris Wren3824c392017-11-27 12:54:14 -05003249 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3250 // PACKAGE: The package name of the app requesting the permission
3251 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003252 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3253
Chris Wren3824c392017-11-27 12:54:14 -05003254 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3255 // PACKAGE: The package name of the app that was granted the permission
3256 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003257 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3258
Chris Wren3824c392017-11-27 12:54:14 -05003259 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3260 // PACKAGE: The package name of the app requesting the permission
3261 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003262 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3263
Chris Wren3824c392017-11-27 12:54:14 -05003264 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3265 // PACKAGE: The package name of the app the permission was revoked for
3266 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003267 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3268
Chris Wren3824c392017-11-27 12:54:14 -05003269 // ACTION: An app requested the permission RECEIVE_MMS
3270 // PACKAGE: The package name of the app requesting the permission
3271 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003272 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3273
Chris Wren3824c392017-11-27 12:54:14 -05003274 // ACTION: An app was granted the permission RECEIVE_MMS
3275 // PACKAGE: The package name of the app that was granted the permission
3276 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003277 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3278
Chris Wren3824c392017-11-27 12:54:14 -05003279 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3280 // PACKAGE: The package name of the app requesting the permission
3281 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003282 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3283
Chris Wren3824c392017-11-27 12:54:14 -05003284 // ACTION: The permission RECEIVE_MMS was revoked for an app
3285 // PACKAGE: The package name of the app the permission was revoked for
3286 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003287 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3288
Chris Wren3824c392017-11-27 12:54:14 -05003289 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3290 // PACKAGE: The package name of the app requesting the permission
3291 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003292 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3293
Chris Wren3824c392017-11-27 12:54:14 -05003294 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3295 // PACKAGE: The package name of the app that was granted the permission
3296 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003297 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3298
Chris Wren3824c392017-11-27 12:54:14 -05003299 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3300 // PACKAGE: The package name of the app requesting the permission
3301 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003302 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3303
Chris Wren3824c392017-11-27 12:54:14 -05003304 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3305 // PACKAGE: The package name of the app the permission was revoked for
3306 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003307 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3308
Chris Wren3824c392017-11-27 12:54:14 -05003309 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3310 // PACKAGE: The package name of the app requesting the permission
3311 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003312 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3313
Chris Wren3824c392017-11-27 12:54:14 -05003314 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3315 // PACKAGE: The package name of the app that was granted the permission
3316 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003317 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3318
Chris Wren3824c392017-11-27 12:54:14 -05003319 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3320 // PACKAGE: The package name of the app requesting the permission
3321 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003322 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3323
Chris Wren3824c392017-11-27 12:54:14 -05003324 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3325 // PACKAGE: The package name of the app the permission was revoked for
3326 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003327 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3328
Mahaverfa6566e2016-11-29 21:08:14 +00003329 // ACTION: Logged when a provisioning session has started
3330 PROVISIONING_SESSION_STARTED = 734;
3331
3332 // ACTION: Logged when a provisioning session has completed
3333 PROVISIONING_SESSION_COMPLETED = 735;
3334
Chris Wren3824c392017-11-27 12:54:14 -05003335 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3336 // PACKAGE: The package name of the app requesting the permission
3337 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003338 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003339
Chris Wren3824c392017-11-27 12:54:14 -05003340 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3341 // PACKAGE: The package name of the app that was granted the permission
3342 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003343 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003344
Chris Wren3824c392017-11-27 12:54:14 -05003345 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3346 // PACKAGE: The package name of the app requesting the permission
3347 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003348 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003349
Chris Wren3824c392017-11-27 12:54:14 -05003350 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3351 // PACKAGE: The package name of the app the permission was revoked for
3352 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003353 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003354
Santos Cordon3107d292016-09-20 15:50:35 -07003355 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3356 // SUBTYPE: slider value
3357 // CATEGORY: QUICK_SETTINGS
3358 // OS: 6.0
3359 ACTION_BRIGHTNESS_FOR_VR = 498;
3360
Hugo Benichie1cbf152016-12-08 09:36:52 +09003361 // ACTION: A captive portal was detected during network validation
3362 // CATEGORY: NOTIFICATION
3363 // OS: N-MR2
3364 NOTIFICATION_NETWORK_SIGN_IN = 740;
3365
3366 // ACTION: An unvalidated network without Internet was selected by the user
3367 // CATEGORY: NOTIFICATION
3368 // OS: N-MR2
3369 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3370
3371 // ACTION: A validated network failed revalidation and lost Internet access
3372 // CATEGORY: NOTIFICATION
3373 // OS: N-MR2
3374 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3375
3376 // ACTION: The system default network switched to a different network
3377 // CATEGORY: NOTIFICATION
3378 // OS: N-MR2
3379 NOTIFICATION_NETWORK_SWITCH = 743;
3380
Fan Zhang074c4cb2016-12-21 12:10:33 -08003381 // OPEN: Settings > System
3382 SETTINGS_SYSTEM_CATEGORY = 744;
3383
3384 // OPEN: Settings > Storage
3385 SETTINGS_STORAGE_CATEGORY = 745;
3386
3387 // OPEN: Settings > Network & Internet
3388 SETTINGS_NETWORK_CATEGORY = 746;
3389
3390 // OPEN: Settings > Connected Device
3391 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3392
3393 // OPEN: Settings > App & Notification
3394 SETTINGS_APP_NOTIF_CATEGORY = 748;
3395
3396 // OPEN: Settings > System > Input & Gesture
3397 SETTINGS_INPUT_CATEGORY = 749;
3398
3399 // OPEN: Settings > System > Language & Region
3400 SETTINGS_LANGUAGE_CATEGORY = 750;
3401
3402 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3403 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3404
3405 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3406 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3407
3408 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3409 SETTINGS_GESTURE_PICKUP = 753;
3410
3411 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3412 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3413
3414 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3415 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3416
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003417 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3418 // CATEGORY: Settings
3419 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3420
Alison Cichowlas803054d2016-12-13 14:38:01 -05003421 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003422 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003423 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3424 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3425 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003426
Salvador Martinezc43ab062016-12-21 11:09:11 -08003427 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3428 // user accepted
3429 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003430
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003431 // Enclosing category for group of APP_TRANSITION_FOO events,
3432 // logged when we execute an app transition.
3433 APP_TRANSITION = 761;
3434
Fan Zhang945deea2017-01-11 16:37:49 -08003435 // ACTION: User leaves Settings search UI without entering any query.
3436 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3437
3438 // ACTION: Clicking on any search result in Settings.
3439 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003440
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003441 // ACTION: Allow Battery optimization for an app
3442 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3443
3444 // ACTION: Deny Battery optimization for an app
3445 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3446
3447 // ACTION: Enable Device Admin app
3448 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3449
3450 // ACTION: Disable Device Admin app
3451 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3452
3453 // ACTION: Allow "Do Not Disturb access" for an app
3454 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3455
3456 // ACTION: Deny "Do Not Disturb access" for an app
3457 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3458
3459 // ACTION: Allow "Draw over other apps" for an app
3460 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3461
Christine Franks47175c32017-03-14 10:21:25 -07003462 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003463 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3464
3465 // ACTION: Allow "VR helper services" for an app
3466 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3467
3468 // ACTION: Deny "VR helper services" for an app
3469 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3470
3471 // ACTION: Allow "Modify system settings" for an app
3472 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3473
3474 // ACTION: Deny "Modify system settings" for an app
3475 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3476
3477 // ACTION: Allow "Notification access" for an app
3478 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3479
3480 // ACTION: Deny "Notification access" for an app
3481 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3482
3483 // ACTION: "Premium SMS access" for an app - "ask user" option
3484 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3485
3486 // ACTION: "Premium SMS access" for an app - "never allow" option
3487 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3488
3489 // ACTION: "Premium SMS access" for an app - "always allow" option
3490 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3491
3492 // ACTION: Allow "Unrestricted data access" for an app
3493 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3494
3495 // ACTION: Deny "Unrestricted data access" for an app
3496 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3497
3498 // ACTION: Allow "Usage access" for an app
3499 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3500
3501 // ACTION: Deny "Usage access" for an app
3502 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3503
Fan Zhangad5dacc2017-01-18 14:18:54 -08003504 // OPEN: Settings > Apps > Default Apps > Default browser
3505 DEFAULT_BROWSER_PICKER = 785;
3506
3507 // OPEN: Settings > Apps > Default Apps > Default emergency app
3508 DEFAULT_EMERGENCY_APP_PICKER = 786;
3509
3510 // OPEN: Settings > Apps > Default Apps > Default home
3511 DEFAULT_HOME_PICKER = 787;
3512
3513 // OPEN: Settings > Apps > Default Apps > Default phone
3514 DEFAULT_PHONE_PICKER = 788;
3515
3516 // OPEN: Settings > Apps > Default Apps > Default sms
3517 DEFAULT_SMS_PICKER = 789;
3518
3519 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3520 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3521
3522 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3523 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3524
Jason Long1b51da62017-01-24 11:35:31 -08003525 // OPEN: Settings > Apps > Default Apps > Default autofill app
3526 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003527
Chris Wren26ca65d2016-11-29 10:43:28 -05003528 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003529 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003530 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3531 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3532 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3533 NOTIFICATION_ID = 796;
3534 NOTIFICATION_TAG = 797;
3535 NOTIFICATION_SHADE_INDEX = 798;
3536 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003537
Anas Karbilaf7648f42016-12-11 00:55:02 +01003538 // OPEN: QS NFC tile shown
3539 // ACTION: QS NFC tile tapped
3540 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003541 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003542
Chris Wren26ca65d2016-11-29 10:43:28 -05003543 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003544 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003545 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3546 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3547 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3548 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3549 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3550 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3551
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003552 // ACTION: "Force stop" action on an app
3553 ACTION_APP_FORCE_STOP = 807;
3554
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003555 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3556 // CATEGORY: SETTINGS
3557 // OS: 8.0
3558 MANAGE_EXTERNAL_SOURCES = 808;
3559
Mahaver6cd47162017-01-23 09:59:33 +00003560 // ACTION: Logged when terms activity finishes.
3561 // TIME: Indicates time taken by terms activity to finish in MS.
3562 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3563
3564 // Indicates number of terms displayed on the terms screen.
3565 PROVISIONING_TERMS_COUNT = 810;
3566
3567 // Indicates number of terms read on the terms screen.
3568 PROVISIONING_TERMS_READ = 811;
3569
Winson Chung59fda9e2017-01-20 16:14:51 -08003570 // Logs that the user has edited the picture-in-picture settings.
3571 // CATEGORY: SETTINGS
3572 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3573
Winson Chungf4ac0632017-03-17 12:34:12 -07003574 // ACTION: Allow "Enable picture-in-picture" for an app
3575 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003576
Winson Chungf4ac0632017-03-17 12:34:12 -07003577 // ACTION: Deny "Enable picture-in-picture" for an app
3578 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003579
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003580 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3581 // CATEGORY: SETTINGS
3582 // OS: 8.0
3583 TTS_SLIDERS = 815;
3584
Jason Monk524fb402017-01-25 10:33:31 -05003585 // ACTION: Settings -> Display -> Theme
3586 ACTION_THEME = 816;
3587
chchaob8e253a2017-01-25 12:12:09 -08003588 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3589 // ACTION: Select to Speak configuration is chosen
3590 // SUBTYPE: 0 is off, 1 is on
3591 // CATEGORY: SETTINGS
3592 // OS: N
3593 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3594
Anton Philippov95a553e2017-01-27 00:08:24 +00003595 // OPEN: Settings > System > Backup
3596 // CATEGORY: SETTINGS
3597 // OS: O
3598 BACKUP_SETTINGS = 818;
3599
Winson Chung14fbe142016-12-19 16:18:24 -08003600 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003601 // VALUE: true if it was entered while hiding as a result of moving to
3602 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003603 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3604
3605 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3606 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3607 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3608
3609 // ACTION: The activity currently in picture-in-picture was minimized
3610 // VALUE: True if the PiP was minimized, false otherwise
3611 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3612
3613 // ACTION: Picture-in-picture was dismissed via the dismiss button
3614 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3615 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3616
3617 // ACTION: The visibility of the picture-in-picture meny
3618 // VALUE: Whether or not the menu is visible
3619 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3620
3621 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3622 // logged when the aspect ratio changes
3623 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3624
3625 // The current aspect ratio of the PiP, logged when it changes.
3626 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3627
Chris Wren27a52fa2017-02-01 14:21:43 -05003628 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3629 // CATEGORY: GLOBAL_SYSTEM_UI
3630 // OS: O
3631 FIELD_GESTURE_LENGTH = 826;
3632
3633 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3634 // CATEGORY: GLOBAL_SYSTEM_UI
3635 // OS: O
3636 FIELD_GESTURE_VELOCITY = 827;
3637
Christine Franks27fde392017-02-07 10:21:55 -08003638 // OPEN: Carrier demo mode password dialog
3639 CARRIER_DEMO_MODE_PASSWORD = 828;
3640
Fan Zhang70967f32017-02-13 16:02:24 -08003641 // ACTION: Create a Settings shortcut item.
3642 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3643
3644 // ACTION: A tile in Settings information architecture is clicked
3645 ACTION_SETTINGS_TILE_CLICK = 830;
3646
Julia Reynolds520df6e2017-02-13 09:05:10 -05003647 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3648 // updated
3649 // CATEGORY: NOTIFICATION
3650 // OS: O
3651 NOTIFICATION_SNOOZED = 831;
3652
3653 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3654 // OS: O
3655 NOTIFICATION_SNOOZED_CRITERIA = 832;
3656
Fan Zhang65899432017-02-14 13:36:53 -08003657 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003658 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003659 FIELD_CONTEXT = 833;
3660
Fan Zhangd95dcb42017-02-14 13:48:09 -08003661 // ACTION: Settings advanced button is expanded
3662 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3663
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003664 // ACTION: Logs the number of times the saved network evaluator was used to
3665 // recommend a wifi network
3666 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3667
3668 // ACTION: Logs the number of times the recommended network evaluator was
3669 // used to recommend a wifi network
3670 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3671
3672 // ACTION: Logs the number of times a recommended network was resulted in a
3673 // successful connection
3674 // VALUE: true if the connection was successful, false if the connection failed
3675 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3676
Daniel Nishic581bfc2017-02-08 10:18:19 -08003677 // OPEN: Settings > Storage > Games
3678 // CATEGORY: SETTINGS
3679 // OS: O
3680 APPLICATIONS_STORAGE_GAMES = 838;
3681
3682 // OPEN: Settings > Storage > Audio and Music
3683 // CATEGORY: SETTINGS
3684 // OS: O
3685 APPLICATIONS_STORAGE_MUSIC = 839;
3686
3687 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3688 // CATEGORY: SETTINGS
3689 // OS: O
3690 STORAGE_FREE_UP_SPACE_NOW = 840;
3691
3692 // ACTION: Settings > Storage > Files to open the File Manager
3693 // CATEGORY: SETTINGS
3694 // OS: O
3695 STORAGE_FILES = 841;
3696
Fan Zhangb1d49222017-02-15 17:12:58 -08003697 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003698 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003699
Fan Zhang7f2cace2017-02-17 12:05:48 -08003700 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3701 DEFAULT_ASSIST_PICKER = 843;
3702
3703 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3704 DEFAULT_VOICE_INPUT_PICKER = 844;
3705
Daniel Nishi4058a842017-02-21 17:11:35 -08003706 // OPEN: Settings > Storage > [Profile]
3707 SETTINGS_STORAGE_PROFILE = 845;
3708
Doris Lingedb84c32017-02-23 10:56:01 -08003709 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3710 // CATEGORY: SETTINGS
3711 // OS: O
3712 ENCRYPTION_AND_CREDENTIAL = 846;
3713
Fan Zhangb66e5422017-02-24 14:37:45 -08003714 // ACTION: Settings > About device > Build number
3715 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3716
3717 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3718 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3719
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003720 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3721 // CATEGORY: SETTINGS
3722 // OS: O
3723 WIFI_NETWORK_DETAILS = 849;
3724
jackqdyuleia2a14342017-02-28 16:20:48 -08003725 // ACTION: Settings > Battery > Menu > Usage Alerts
3726 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3727
3728 // ACTION: Settings > Battery > Menu > Optimization
3729 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3730
3731 // ACTION: Settings > Battery > Menu > Apps Toggle
3732 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3733
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003734 // ACTION: Settings > Any preference is changed
3735 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3736
3737 // FIELD: The name of preference when it is changed in Settings
3738 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3739
3740 // FIELD: The new value of preference when it is changed in Settings
3741 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3742
Julia Reynoldsd373d782017-03-03 13:32:57 -05003743 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3744 // channel updated
3745 // PACKAGE: the package the channel belongs too
3746 // CATEGORY: NOTIFICATION
3747 // OS: O
3748 ACTION_NOTIFICATION_CHANNEL = 856;
3749
3750 // Tagged data for notification channel. String.
3751 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3752
3753 // Tagged data for notification channel. int.
3754 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3755
3756 // OPEN: Notification channel group created.
3757 // PACKAGE: the package the group belongs to
3758 // CATEGORY: NOTIFICATION
3759 // OS: O
3760 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3761
3762 // Tagged data for notification channel group. String.
3763 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3764
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003765 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3766 // CATEGORY: SETTINGS
3767 // OS: O
3768 SETTINGS_NETWORK_SCORER = 861;
3769
Fan Zhang99861312017-03-07 14:32:38 -08003770 // OPEN: Settings > About device > Model > Hardware info dialog
3771 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3772
mariagpuyol0f5512e2017-03-01 12:09:56 -08003773 // ACTION: Checks whether a contact's phone still exists
3774 // Value 0: It doesn't exist anymore
3775 // Value 1: It still exists
3776 // Value 2: A SecurityException was thrown
3777 // CATEGORY: SETTINGS
3778 // OS: N
3779 ACTION_PHONE_EXISTS = 863;
3780
3781 // ACTION: Retrieves a contact from CP2
3782 // Value 0: Contact retrieved without issues
3783 // Value 1: An IllegalArgumentException was thrown
3784 // CATEGORY: SETTINGS
3785 // OS: N
3786 ACTION_GET_CONTACT = 864;
3787
Chris Wren4d6b54d2017-04-27 16:56:54 -04003788 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003789 // internal platform metrics use.
3790 RESERVED_FOR_LOGBUILDER_PID = 865;
3791
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003792 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3793 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3794
3795 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3796 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3797
3798 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3799 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3800
3801 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3802 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3803
3804 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3805 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3806
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003807 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003808 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003809
Fan Zhang082d21c2017-03-13 15:25:54 -07003810 // ACTION: Settings > App detail > Uninstall
3811 ACTION_SETTINGS_UNINSTALL_APP = 872;
3812
3813 // ACTION: Settings > App detail > Uninstall Device admin app
3814 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3815
3816 // ACTION: Settings > App detail > Disable app
3817 ACTION_SETTINGS_DISABLE_APP = 874;
3818
3819 // ACTION: Settings > App detail > Enable app
3820 ACTION_SETTINGS_ENABLE_APP = 875;
3821
3822 // ACTION: Settings > App detail > Clear data
3823 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3824
3825 // ACTION: Settings > App detail > Clear cache
3826 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3827
3828 // ACTION: Clicking on any search result in Settings.
3829 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3830
3831 // FIELD: Settings inline search result name
3832 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3833
3834 // FIELD: Settings inline search result value
3835 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3836
Fan Zhang53797932017-03-13 17:46:24 -07003837 // ACTION: Settings > Search > Click saved queries
3838 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3839
Doris Lingbf8d9de2017-03-15 11:52:50 -07003840 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3841 // CATEGORY: SETTINGS
3842 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3843
Chris Wren3824c392017-11-27 12:54:14 -05003844 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3845 // PACKAGE: The package name of the app requesting the permission
3846 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003847 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3848
Chris Wren3824c392017-11-27 12:54:14 -05003849 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3850 // PACKAGE: The package name of the app that was granted the permission
3851 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003852 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3853
Chris Wren3824c392017-11-27 12:54:14 -05003854 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3855 // PACKAGE: The package name of the app requesting the permission
3856 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003857 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3858
Chris Wren3824c392017-11-27 12:54:14 -05003859 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3860 // PACKAGE: The package name of the app the permission was revoked for
3861 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003862 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3863
Chris Wren3824c392017-11-27 12:54:14 -05003864 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3865 // PACKAGE: The package name of the app requesting the permission
3866 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003867 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3868
Chris Wren3824c392017-11-27 12:54:14 -05003869 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3870 // PACKAGE: The package name of the app that was granted the permission
3871 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003872 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3873
Chris Wren3824c392017-11-27 12:54:14 -05003874 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3875 // PACKAGE: The package name of the app requesting the permission
3876 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003877 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3878
Chris Wren3824c392017-11-27 12:54:14 -05003879 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3880 // PACKAGE: The package name of the app the permission was revoked for
3881 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003882 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3883
Chris Wren3824c392017-11-27 12:54:14 -05003884 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3885 // PACKAGE: The package name of the app requesting the permission
3886 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003887 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3888
Chris Wren3824c392017-11-27 12:54:14 -05003889 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3890 // PACKAGE: The package name of the app that was granted the permission
3891 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003892 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3893
Chris Wren3824c392017-11-27 12:54:14 -05003894 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3895 // PACKAGE: The package name of the app requesting the permission
3896 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003897 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3898
Chris Wren3824c392017-11-27 12:54:14 -05003899 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3900 // PACKAGE: The package name of the app the permission was revoked for
3901 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003902 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3903
Chris Wren3824c392017-11-27 12:54:14 -05003904 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3905 // PACKAGE: The package name of the app requesting the permission
3906 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003907 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3908
Chris Wren3824c392017-11-27 12:54:14 -05003909 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3910 // PACKAGE: The package name of the app that was granted the permission
3911 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003912 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3913
Chris Wren3824c392017-11-27 12:54:14 -05003914 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3915 // PACKAGE: The package name of the app requesting the permission
3916 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003917 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3918
Chris Wren3824c392017-11-27 12:54:14 -05003919 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3920 // PACKAGE: The package name of the app the permission was revoked for
3921 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003922 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3923
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003924 // ACTION: Phase 1 of instant application resolution occurred
3925 // OS: O
3926 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3927
3928 // ACTION: Phase 2 of instant application resolution occurred
3929 // OS: O
3930 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3931
3932 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3933 // OS: O
3934 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3935
3936 // FIELD: The status of an ephemeral resolution phase
3937 // Value 0: success
3938 // Value 1: no full hash match
3939 // OS: O
3940 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3941
3942 // FIELD - A token to identify all events that are part of the same instant application launch
3943 // OS: O
3944 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3945
3946 // FIELD - The name of the package responsible for launching the activity
3947 // OS: O
3948 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3949
3950 // FIELD - Whether or not the launched activity is part of an instant application
3951 // OS: O
3952 APP_TRANSITION_IS_EPHEMERAL = 905;
3953
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003954 // An autofill session was started
3955 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003956 // NOTE: starting on OS MR1, it also added the following field:
3957 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3958 // NOTE: starting on OS P, it also added the following field:
3959 // Tag FIELD_FLAGS - Flags used to start the session
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003960 AUTOFILL_SESSION_STARTED = 906;
3961
3962 // An autofill request was processed by a service
3963 // Type TYPE_SUCCESS: The request succeeded
3964 // Type TYPE_FAILURE: The request failed
3965 // Package: Package of app that is autofilled
3966 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08003967 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned (only in success case)
3968 // NOTE: starting on OS P, it also added:
3969 // Type TYPE_CLOSE: Service returned a null response.
3970 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
3971 // number of entries field ids in the request.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003972 AUTOFILL_REQUEST = 907;
3973
3974 // Tag of a field for a package of an autofill service
3975 FIELD_AUTOFILL_SERVICE = 908;
3976
3977 // Tag of a field for the number of datasets
3978 FIELD_AUTOFILL_NUM_DATASETS = 909;
3979
3980 // An autofill dataset selection UI was shown
3981 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3982 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3983 // Type TYPE_ACTION: dataset was selected
3984 // Type TYPE_DETAIL: authentication was selected
3985 // Package: Package of app that was autofilled
3986 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3987 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3988 AUTOFILL_FILL_UI = 910;
3989
3990 // Tag of a field for the length of the filter text
3991 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3992
Felipe Lemeb4cd6222017-09-26 09:11:32 -07003993 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003994 // Package: Package of app that was autofilled
3995 AUTOFILL_AUTHENTICATED = 912;
3996
3997 // An activity was autofilled and all values could be applied
3998 // Package: Package of app that is autofilled
3999 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4000 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
4001 AUTOFILL_DATASET_APPLIED = 913;
4002
4003 // Tag of a field for the number values to be filled in
4004 FIELD_AUTOFILL_NUM_VALUES = 914;
4005
4006 // Tag of a field for the number of views that were filled
4007 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4008
4009 // An autofill save UI was shown
4010 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4011 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4012 // Type TYPE_ACTION: data was saved
4013 // Package: Package of app that was autofilled
4014 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
4015 AUTOFILL_SAVE_UI = 916;
4016
4017 // Tag of a field for the number of saveable ids
4018 FIELD_AUTOFILL_NUM_IDS = 917;
4019
4020 // ACTION: An autofill service was reqiested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004021 // Type TYPE_SUCCESS: The request succeeded right away
4022 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004023 // Type TYPE_FAILURE: The request failed
4024 // Package: Package of app that was autofilled
4025 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4026 AUTOFILL_DATA_SAVE_REQUEST = 918;
4027
4028 // An auto-fill session was finished
4029 // Package: Package of app that was autofilled
4030 AUTOFILL_SESSION_FINISHED = 919;
4031
Chris Wren148805582017-03-17 17:18:11 -04004032 // meta-event: a reader has checkpointed the log here.
4033 METRICS_CHECKPOINT = 920;
4034
Fan Zhanged1845f2017-03-23 14:46:59 -07004035 // OPEN: Settings -> Display -> When in VR Mode
4036 VR_DISPLAY_PREFERENCE = 921;
4037
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004038 // OPEN: Settings > Accessibility > Magnification
4039 // CATEGORY: SETTINGS
4040 // OS: O
4041 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004042
4043 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4044 // app.
4045 // VALUE: The package name of the app
4046 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4047
Fan Zhang1a34e752017-03-24 13:44:51 -07004048 // OPEN: Settings -> System -> Reset options
4049 RESET_DASHBOARD = 924;
4050
Jason Monk8c09ac72017-03-16 11:53:40 -04004051 // ACTION: QS -> Tile clicked
4052 ACTION_QS_CLICK = 925;
4053
4054 // ACTION: QS -> Secondary click
4055 ACTION_QS_SECONDARY_CLICK = 926;
4056
4057 // FIELD: Position info in QS clicks
4058 FIELD_QS_POSITION = 927;
4059
4060 // FIELD: The value of a QS tile when clicked (if applicable)
4061 FIELD_QS_VALUE = 928;
4062
4063 // ACTION: QS -> Detail panel -> more settings
4064 ACTION_QS_MORE_SETTINGS = 929;
4065
4066 // ACTION: QS -> Click date
4067 ACTION_QS_DATE = 930;
4068
Jason Monk1b775652017-03-31 15:42:27 -04004069 // ACTION: Event on nav button
4070 ACTION_NAV_BUTTON_EVENT = 931;
4071
4072 // FIELD: Flags for a nav button event
4073 FIELD_FLAGS = 932;
4074
4075 // FIELD: Action for a nav button event
4076 FIELD_NAV_ACTION = 933;
4077
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004078 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4079 // CATEGORY: SETTINGS
4080 // OS: O
4081 FINGERPRINT_REMOVE_SIDECAR = 934;
4082
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004083 // OPEN: Settings > Storage > Movies & TV
4084 // CATEGORY: SETTINGS
4085 // OS: O
4086 APPLICATIONS_STORAGE_MOVIES = 935;
4087
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004088 // OPEN: Text selection "assist" menu item shown.
4089 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4090 // CATEGORY: TEXT_CONTROLS
4091 // OS: O
4092 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4093
4094 // ACTION: Text selection "assist" menu item clicked.
4095 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4096 // CATEGORY: TEXT_CONTROLS
4097 // OS: O
4098 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4099
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004100 // OPEN: Settings > Security > Managed Device Info > Apps installed
4101 // CATEGORY: SETTINGS
4102 // OS: O
4103 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4104
4105 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4106 // CATEGORY: SETTINGS
4107 // OS: O
4108 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4109
4110 // OPEN: Settings > Security > Managed Device Info > Default apps
4111 // CATEGORY: SETTINGS
4112 // OS: O
4113 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4114
Julia Reynolds80b18072017-04-23 12:27:07 -04004115 // OPEN: Settings > Notifications > An app > A channel > Importance
4116 // CATEGORY: SETTINGS
4117 // OS: O
4118 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4119
4120 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4121 // CATEGORY: SETTINGS
4122 // OS: O
4123 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4124
Chris Wren4d6b54d2017-04-27 16:56:54 -04004125 // This value should never appear in log outputs - it is reserved for
4126 // internal platform metrics use.
4127 RESERVED_FOR_LOGBUILDER_UID = 943;
4128
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004129 // OPEN: Running background apps notification > List of background apps
4130 // CATEGORY: GLOBAL_SYSTEM_UI
4131 // OS: O
4132 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4133
Jorim Jaggi515dd682017-05-05 15:05:07 +02004134 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4135 // client.
4136 // OS: O
4137 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4138
Chris Wrenb3921792017-06-01 13:34:46 -04004139 // FIELD - The group ID of a notification.
4140 // Type: string
4141 // OS: O
4142 FIELD_NOTIFICATION_GROUP_ID = 946;
4143
4144 // FIELD - If the notification is a group summary: 1.
4145 // Type: int encoded boolean
4146 // OS: O
4147 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4148
Felipe Leme637e05e2017-12-06 12:09:37 -08004149 // An app attempted to forge a different component name in the AssisStructure that would be
4150 // passed to the autofill service.
4151 // OS: O (security patch)
4152 // Package: Real package of the app being autofilled
4153 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4154 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
4155 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4156
4157 // FIELD - The component that an app tried tro forged.
4158 // Type: string
4159 // OS: O (security patch)
4160 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4161
Chris Wren26ca65d2016-11-29 10:43:28 -05004162 // ---- End O Constants, all O constants go above this line ----
4163
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004164 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4165 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4166
jackqdyulei92e492e2017-04-28 13:04:42 -07004167 // OPEN: Settings > Battery > High Usage > Abnormal app page
4168 // CATEGORY: SETTINGS
4169 FUELGAUGE_ANOMALY_DETAIL = 987;
4170
4171 // OPEN: Settings > Battery > High Usage
4172 DIALOG_HANDLE_ANOMALY = 988;
4173
Jonathan Solnita4138162017-05-10 21:06:04 -07004174 // ACTION: Camera lift gesture
4175 // CATEGORY: GLOBAL_SYSTEM_UI
4176 // OS: O
4177 ACTION_CAMERA_LIFT_TRIGGER = 989;
4178
Maurice Lam76ae09c2017-05-05 12:03:49 -07004179 // OPEN: Choose screen lock dialog in Settings
4180 // CATEGORY: SETTINGS
4181 // OS: O DR
4182 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4183
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004184 // OPEN: Assist Gesture training intro in Settings
4185 // CATEGORY: SETTINGS
4186 // OS: O DR
4187 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4188
4189 // OPEN: Assist Gesture training enrolling in Settings
4190 // CATEGORY: SETTINGS
4191 // OS: O DR
4192 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4193
4194 // OPEN: Assist Gesture training finished in Settings
4195 // CATEGORY: SETTINGS
4196 // OS: O DR
4197 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4198
Fan Zhangc666a202017-05-18 17:50:20 -07004199 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4200 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4201
4202 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4203 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4204
Philip Quinn0f9566d2017-05-23 10:32:08 -07004205 // OPEN: Settings > System > Languages & input > Assist gesture
4206 // CATEGORY: SETTINGS
4207 // OS: O DR
4208 SETTINGS_ASSIST_GESTURE = 996;
4209
4210 // ACTION: Assist gesture released without triggering
4211 // CATEGORY: GLOBAL_SYSTEM_UI
4212 // OS: O DR
4213 ASSIST_GESTURE_RELEASED = 997;
4214
4215 // ACTION: Assist gesture primed
4216 // CATEGORY: GLOBAL_SYSTEM_UI
4217 // OS: O DR
4218 ASSIST_GESTURE_PRIMED = 998;
4219
4220 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004221 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004222 // CATEGORY: GLOBAL_SYSTEM_UI
4223 // OS: O DR
4224 ASSIST_GESTURE_TRIGGERED = 999;
4225
Fan Zhang238162b2017-05-25 14:01:41 -07004226 // ACTION: Update default app from Settings
4227 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4228
4229 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004230 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004231
4232 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004233 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004234
Adrian Roos1c81d772017-05-25 18:00:21 -07004235 // OPEN: Settings > Display > Ambient Display
4236 // CATEGORY: SETTINGS
4237 // OS: O DR
4238 AMBIENT_DISPLAY_SETTINGS = 1003;
4239
Hugo Benichi11da42b2017-05-31 11:11:37 +09004240 // ACTION: CaptivePortalLoginActivity starts
4241 // CATEGORY: GLOBAL_SYSTEM_UI
4242 // OS: O DR
4243 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4244
4245 // ACTION: CaptivePortalLoginActivity auto-closes
4246 // CATEGORY: GLOBAL_SYSTEM_UI
4247 // OS: O DR
4248 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4249
4250 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4251 // CATEGORY: GLOBAL_SYSTEM_UI
4252 // OS: O DR
4253 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4254
4255 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4256 // CATEGORY: GLOBAL_SYSTEM_UI
4257 // OS: O DR
4258 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4259
4260 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4261 // CATEGORY: SETTINGS
4262 // OS: O DR
4263 ACTION_WIFI_SIGNIN = 1008;
4264
Antony Sargentf3cc3172017-05-04 14:58:06 -07004265 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4266 // CATEGORY: SETTINGS
4267 // OS: O DR
4268 BLUETOOTH_DEVICE_DETAILS = 1009;
4269
fanzhang172255759d2017-06-05 21:43:47 -07004270 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4271 CONFIGURE_KEYGUARD_DIALOG = 1010;
4272
Fan Zhange33c70d2017-06-06 12:37:13 -07004273 // Open: Settings > Search > No Result View
4274 SETTINGS_SEARCH_NO_RESULT = 1011;
4275
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004276 // OPEN: Assist Gesture before training
4277 // CATEGORY: SETTINGS
4278 // OS: O DR
4279 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4280
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004281 // CaptivePortalLoginActivity displays SSL error page
4282 // CATEGORY: GLOBAL_SYSTEM_UI
4283 // OS: O DR
4284 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4285
Fan Zhang1a0fc992017-06-13 13:45:21 -07004286 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4287 WIFI_TETHER_SETTINGS = 1014;
4288
Antony Sargentc3b5da62017-06-16 11:50:13 -07004289 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4290 // -> Edit name button.
4291 // CATEGORY: SETTINGS
4292 // OS: O DR
4293 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4294
Fan Zhang543587d2017-06-19 12:32:14 -07004295 // ACTION: Settings > Notification Settings > Open application notification
4296 // CATEGORY: SETTINGS
4297 // OS: O DR
4298 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4299
4300 // ACTION: Settings > App Info > Open app settings
4301 // CATEGORY: SETTINGS
4302 // OS: O DR
4303 ACTION_OPEN_APP_SETTING = 1017;
4304
jackqdyulei2f1a3592017-06-19 13:11:05 -07004305 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4306 // CATEGORY: SETTINGS
4307 // OS: O DR
4308 BLUETOOTH_PAIRING = 1018;
4309
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004310 // ACTION: Collect PSD Signals
4311 // CATEGORY: SETTINGS
4312 // OS: O DR
4313 ACTION_PSD_LOADER = 1019;
4314
jackqdyulei602bcc92017-06-21 15:17:53 -07004315 // ACTION: Background check action on an app
4316 // CATEGORY: SETTINGS
4317 // OS: O DR
4318 ACTION_APP_BACKGROUND_CHECK = 1020;
4319
4320 // ACTION: Location check action on an app
4321 // CATEGORY: SETTINGS
4322 // OS: O DR
4323 ACTION_APP_LOCATION_CHECK = 1021;
4324
Charlie Wang15a36ed2017-06-14 14:46:39 -07004325 // Device headset status
4326 // CATEGORY: OTHER
4327 // SUBTYPE: 1 is DON, 2 is DOFF
4328 // OS: O DR
4329 ACTION_HEADSET_STATUS = 1022;
4330
4331 // Device Headset Plug status
4332 // CATEGORY: OTHER
4333 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4334 // OS: O DR
4335 ACTION_HEADSET_PLUG = 1023;
4336
4337 // Device Headset battery level on Plug
4338 // CATEGORY: OTHER
4339 // FIELD - The battery percentage when the user decided to plug in
4340 // Type: integer
4341 // OS: O DR
4342 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4343
Charlie Wang566ec702017-06-26 15:30:03 -07004344 // Device Headset battery level on Plug
4345 // CATEGORY: OTHER
4346 // FIELD - The battery percentage when the user decided to plug in
4347 // Type: integer
4348 // OS: O DR
4349 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4350
Charlie Wang15a36ed2017-06-14 14:46:39 -07004351 // Device Headset Pose status
4352 // CATEGORY: OTHER
4353 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4354 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004355 ACTION_HEADSET_POSE_STATUS = 1026;
4356
4357 // Device Headset Usage session time
4358 // CATEGORY: OTHER
4359 // FIELD - The time the headset was used in a session
4360 // OS: O DR
4361 FIELD_SESSION_TIME_MS = 1027;
4362
4363 // Device Headset Idle time
4364 // CATEGORY: OTHER
4365 // FIELD - The time in between each session
4366 // OS: O DR
4367 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4368
4369 // Device Headset charge session time
4370 // CATEGORY: OTHER
4371 // FIELD - The time taken for each charge
4372 // OS: O DR
4373 FIELD_TIME_OF_CHARGE_MS = 1029;
4374
4375 // Device Headset time between charge
4376 // CATEGORY: OTHER
4377 // FIELD - The time in between each charge
4378 // OS: O DR
4379 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004380
Antony Sargentca701a22017-07-05 17:02:00 -07004381 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4382 // -> Forget button.
4383 // CATEGORY: SETTINGS
4384 // OS: O DR
4385 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4386
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004387 // An event from the camera service
4388 // CATEGORY: OTHER
4389 // SUBTYPE: CameraEvent
4390 // OS: O DR
4391 ACTION_CAMERA_EVENT = 1032;
4392
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004393 // OPEN: Settings > Trampoline Intent > Settings page
4394 // CATEGORY: SETTINGS
4395 // OS: O DR
4396 TRAMPOLINE_SETTINGS_EVENT = 1033;
4397
Chris Wren9a4f2662017-06-29 10:10:02 -04004398 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4399
Malcolm Chen21062542017-06-20 11:36:01 -07004400 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4401 // CATEGORY: SETTINGS
4402 // OS: O MR
4403 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4404
4405 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4406 // CATEGORY: SETTINGS
4407 // OS: O MR
4408 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4409
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004410 // FIELD - State of asynchronous ranking when Settings search result is clicked
4411 // CATEGORY: SETTINGS
4412 // OS: O MR
4413 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4414
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004415 // ACTION: Settings > Connected devices > SMS Mirroring
4416 // CATEGORY: SETTINGS
4417 // OS: O MR
4418 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4419
Kang Li2c571892017-07-05 14:47:32 -07004420 // ACTION: Chooser picked a ranked target.
4421 // CATEGORY: GLOBAL_SYSTEM_UI
4422 // OS: O MR
4423 ACTION_TARGET_SELECTED = 1085;
4424
4425 // FIELD - is category used in Chooser: 1.
4426 // Type: int encoded boolean
4427 // CATEGORY: GLOBAL_SYSTEM_UI
4428 // OS: O MR
4429 FIELD_IS_CATEGORY_USED = 1086;
4430
4431 // FIELD - ranked position of selected target for Chooser.
4432 // CATEGORY: GLOBAL_SYSTEM_UI
4433 // OS: O MR
4434 FIELD_RANKED_POSITION = 1087;
4435
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004436 // OPEN: Settings > Data plan usage
4437 // CATEGORY: SETTINGS
4438 // OS: O MR
4439 DATA_PLAN_USAGE_SUMMARY = 1088;
4440
Doris Lingce007eb2017-08-09 13:59:46 -07004441 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4442 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4443
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004444 // ACTION: Logged when the app has notified that it has fully drawn. See
4445 // Activity.reportFullyDrawn().
4446 APP_TRANSITION_REPORTED_DRAWN = 1090;
4447
4448 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4449 // the app transition.
4450 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4451
Daniel Nishia86115f2017-08-23 10:27:08 -07004452 // OPEN: Settings > Storage > Photos & Videos
4453 // CATEGORY: SETTINGS
4454 // OS: O MR
4455 APPLICATIONS_STORAGE_PHOTOS = 1092;
4456
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004457 // ACTION: Logged when the status bar icons change.
4458 // OS: O MR
4459 STATUS_BAR_ICONS_CHANGED = 1093;
4460
4461 // FIELD: Bitfield indicating which icons are shown.
4462 // OS: O MR
4463 FIELD_STATUS_ICONS = 1094;
4464
4465 // FIELD: Number of status icons currently shown.
4466 // OS: O MR
4467 FIELD_NUM_STATUS_ICONS = 1095;
4468
Jack He4b605792017-09-01 11:48:30 -07004469 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4470 // CATEGORY: SETTINGS
4471 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004472 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004473
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004474 // FIELD - Whether smart suggestion ranking was enabled or not
4475 // Type: int encoded boolean
4476 // CATEGORY: SETTINGS
4477 // OS: O MR
4478 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4479
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004480 // ACTION: The device boots
4481 ACTION_BOOT = 1098;
4482
4483 // FIELD: A string value representing some state of the platform, e.g., boot reason
4484 FIELD_PLATFORM_REASON = 1099;
4485
Jan Althaus786a39d2017-09-15 10:41:16 +02004486 // CATEGORY: The category for all actions relating to selection session logging.
4487 // OS: O MR
4488 TEXT_SELECTION_SESSION = 1100;
4489
4490 // ACTION: A selection session started (i.e. the selection handles appeared)
4491 // CATEGORY: TEXT_SELECTION_SESSION
4492 // OS: O MR
4493 ACTION_TEXT_SELECTION_START = 1101;
4494
4495 // ACTION: The user modified the selection (e.g. by dragging the handles)
4496 // CATEGORY: TEXT_SELECTION_SESSION
4497 // OS: O MR
4498 ACTION_TEXT_SELECTION_MODIFY = 1102;
4499
4500 // ACTION: The user modified the selection by pressing the "select all" button.
4501 // CATEGORY: TEXT_SELECTION_SESSION
4502 // OS: O MR
4503 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4504
4505 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4506 // CATEGORY: TEXT_SELECTION_SESSION
4507 // OS: O MR
4508 ACTION_TEXT_SELECTION_RESET = 1104;
4509
4510 // ACTION: Smart selection made a single word prediction
4511 // CATEGORY: TEXT_SELECTION_SESSION
4512 // OS: O MR
4513 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4514
4515 // ACTION: Smart selection made a multi word prediction
4516 // CATEGORY: TEXT_SELECTION_SESSION
4517 // OS: O MR
4518 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4519
4520 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4521 // CATEGORY: TEXT_SELECTION_SESSION
4522 // OS: O MR
4523 ACTION_TEXT_SELECTION_AUTO = 1107;
4524
4525 // ACTION: A selection session ended with the user typing over the text
4526 // CATEGORY: TEXT_SELECTION_SESSION
4527 // OS: O MR
4528 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4529
4530 // ACTION: A selection session ended with the user copying the text
4531 // CATEGORY: TEXT_SELECTION_SESSION
4532 // OS: O MR
4533 ACTION_TEXT_SELECTION_COPY = 1109;
4534
4535 // ACTION: A selection session ended with the user pasting over the text
4536 // CATEGORY: TEXT_SELECTION_SESSION
4537 // OS: O MR
4538 ACTION_TEXT_SELECTION_PASTE = 1110;
4539
4540 // ACTION: A selection session ended with the user cutting the text
4541 // CATEGORY: TEXT_SELECTION_SESSION
4542 // OS: O MR
4543 ACTION_TEXT_SELECTION_CUT = 1111;
4544
4545 // ACTION: A selection session ended with the user pressing the share button
4546 // CATEGORY: TEXT_SELECTION_SESSION
4547 // OS: O MR
4548 ACTION_TEXT_SELECTION_SHARE = 1112;
4549
4550 // ACTION: A selection session ended with the user pressing the smart share button
4551 // CATEGORY: TEXT_SELECTION_SESSION
4552 // OS: O MR
4553 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4554
4555 // ACTION: A selection session ended with the user dragging the text
4556 // CATEGORY: TEXT_SELECTION_SESSION
4557 // OS: O MR
4558 ACTION_TEXT_SELECTION_DRAG = 1114;
4559
4560 // ACTION: A selection session ended with the user abandoning the selection
4561 // CATEGORY: TEXT_SELECTION_SESSION
4562 // OS: O MR
4563 ACTION_TEXT_SELECTION_ABANDON = 1115;
4564
4565 // ACTION: A selection session ended with the user picking an unhandled action bar item
4566 // CATEGORY: TEXT_SELECTION_SESSION
4567 // OS: O MR
4568 ACTION_TEXT_SELECTION_OTHER = 1116;
4569
4570 // FIELD: Time in milliseconds from the start of the session to this event
4571 // CATEGORY: TEXT_SELECTION_SESSION
4572 // OS: O MR
4573 FIELD_SELECTION_SINCE_START = 1117;
4574
4575 // FIELD: time in milliseconds between the last event in the session and this one
4576 // CATEGORY: TEXT_SELECTION_SESSION
4577 // OS: O MR
4578 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4579
4580 // FIELD: a random uid for a selection session (lasting from select start to end)
4581 // CATEGORY: TEXT_SELECTION_SESSION
4582 // OS: O MR
4583 FIELD_SELECTION_SESSION_ID = 1119;
4584
4585 // FIELD: the sequence number of the event in the session
4586 // CATEGORY: TEXT_SELECTION_SESSION
4587 // OS: O MR
4588 FIELD_SELECTION_SESSION_INDEX = 1120;
4589
4590 // FIELD: a concatenation of the widget type and ML model version.
4591 // CATEGORY: TEXT_SELECTION_SESSION
4592 // OS: O MR
4593 FIELD_SELECTION_VERSION_TAG = 1121;
4594
4595 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4596 // packed 16bit integers. (start in MSBs, end in LSBs)
4597 // CATEGORY: TEXT_SELECTION_SESSION
4598 // OS: O MR
4599 FIELD_SELECTION_RANGE = 1122;
4600
4601 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4602 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4603 // CATEGORY: TEXT_SELECTION_SESSION
4604 // OS: O MR
4605 FIELD_SELECTION_SMART_RANGE = 1123;
4606
Felipe Lemeb22d6352017-09-08 20:03:53 -07004607 // The value of an autofillable and savable view was reset
4608 // Package: Package of app that was autofilled
4609 // OS: O MR
4610 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4611 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
4612 AUTOFILL_VALUE_RESET = 1124;
4613
4614 // Tag of AUTOFILL_VALUE_RESET
4615 // OS: O MR
4616 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4617
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004618 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004619 // Package: Package of app that was autofilled
4620 // OS: O MR
4621 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4622 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4623
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004624 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004625 // Package: Package of app that was autofilled
4626 // OS: O MR
4627 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4628 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4629
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004630 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004631 // Package: Package of app that was autofilled
4632 // OS: O MR
4633 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4634 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4635
Felipe Leme2c888422017-10-26 12:46:35 -07004636 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004637 // Package: Package of app that is autofilled
4638 // OS: O MR
4639 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4640 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4641 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4642
4643 // FIELD - Type of save object passed by the service when the Save UI is shown
4644 // OS: O MR
4645 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4646
Felipe Leme2c888422017-10-26 12:46:35 -07004647 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004648 // Package: Package of app that is autofilled
4649 // OS: O MR
4650 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4651 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4652 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4653
Felipe Leme2c888422017-10-26 12:46:35 -07004654 // User tapped a link in the custom description of the autofill save UI provided by an autofill service
Felipe Lemeb22d6352017-09-08 20:03:53 -07004655 // Package: Package of app that is autofilled
4656 // OS: O MR
4657 // Type TYPE_UNKNOWN: The link was not properly set by the service
4658 // Type TYPE_OPEN: The link launched an activity
4659 // Type TYPE_FAILURE: The link could not launc an activity
4660 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4661 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4662 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4663
4664 // Result of the validation on save when an autofill service provided a validator
4665 // Package: Package of app that is autofilled
4666 // OS: O MR
4667 // Type TYPE_FAILURE: The validation could not be performed due to an error
4668 // Type TYPE_SUCCESS: The validation passed
4669 // Type TYPE_DISMISS: The validation failed
4670 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4671 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4672 AUTOFILL_SAVE_VALIDATION = 1133;
4673
Felipe Leme2c888422017-10-26 12:46:35 -07004674 // Result of an operation in the autofill save UI after the user tapped a link in the custom description
Felipe Lemeb22d6352017-09-08 20:03:53 -07004675 // provided by the autofill service
4676 // Package: Package of app that is autofilled
4677 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004678 // Type TYPE_OPEN: The autofill save UI was restored
4679 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004680 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
4681 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4682
Felipe Leme9d414492017-09-20 13:55:28 -07004683 // Autofill service called API that disables itself
4684 // Package: Package of the autofill service
4685 // OS: O MR
4686 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4687
Felipe Lemeb659adb2018-01-18 15:21:36 -08004688 // Reports how long it took to show the autofill UI after a field was focused
4689 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004690 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4691 // Package: Package of the autofill service
4692 // OS: O MR
4693 AUTOFILL_UI_LATENCY = 1136;
4694
Chris Wren21a2e722017-10-02 17:44:53 -04004695 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4696 // OS: O MR
4697 NOTIFICATION_SNOOZE_CLICKED = 1137;
4698
4699 // Action: user selected a notification snooze duration from the drop down
4700 // OS: O MR
4701 NOTIFICATION_SELECT_SNOOZE = 1138;
4702
4703 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4704 // OS: O MR
4705 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4706
4707 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4708 // OS: O MR
4709 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4710
4711 // Action: user tapped undo on the notification snooze leave-behind
4712 // OS: O MR
4713 NOTIFICATION_UNDO_SNOOZE = 1141;
4714
4715 // Action: user togged the visibility of the notification snooze options drop down
4716 // OS: O MR
4717 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4718
Romain Guy62e8c172017-10-24 21:37:34 +01004719 // OPEN: Settings > Display > Colors
4720 // CATEGORY: SETTINGS
4721 // OS: O MR
4722 COLOR_MODE_SETTINGS = 1143;
4723
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004724 // Enclosing category for group of APP_TRANSITION_FOO events,
4725 // logged when we cancel an app transition.
4726 APP_TRANSITION_CANCELLED = 1144;
4727
Felipe Lemeb659adb2018-01-18 15:21:36 -08004728 // Tag of a field representing a duration on autofill-related metrics.
4729 FIELD_AUTOFILL_DURATION = 1145;
4730
Doris Lingce007eb2017-08-09 13:59:46 -07004731 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4732
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004733 // OPEN: Settings > Network & Internet > Mobile network
4734 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004735 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004736
4737 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4738 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004739 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004740
4741 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4742 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004743 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004744
4745 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4746 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004747 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004748
4749 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4750 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004751 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004752
4753 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4754 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004755 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004756
4757 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4758 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004759 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004760
4761 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4762 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004763 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004764
4765 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4766 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004767 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004768
4769 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4770 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004771 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004772
4773 // ACTION: Settings > Network & Internet > Mobile network > Network
4774 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004775 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004776
4777 // FIELD - Manually selected mobile network
Chris Wren1cb7d272017-10-03 13:22:01 -04004778 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004779
4780 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4781 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004782 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004783
4784 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4785 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004786 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004787
4788 // OPEN: Settings > Network & Internet > Mobile network > System select
4789 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004790 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004791
4792 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4793 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004794 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004795
4796 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4797 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004798 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004799
Fan Zhanga2f2c912017-08-15 17:20:37 -07004800 // OPEN: Settings > Developer Options > Experiment dashboard
4801 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004802 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004803
Julia Reynolds005c8b92017-08-24 10:35:53 -04004804 // OPEN: Settings > Notifications > [App] > Topic Notifications
4805 // CATEGORY: SETTINGS
4806 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004807 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004808
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004809 // OPEN: Settings > Developer options > Enable > Info dialog
4810 // CATEGORY: SETTINGS
4811 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004812 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004813
jeffreyhuang57359c02017-09-18 11:34:00 -07004814 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4815 // CATEGORY: SETTINGS
4816 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004817 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004818
Kevin Chyn60eea712017-09-26 16:03:05 -07004819 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4820 // CATEGORY: SETTINGS
4821 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004822 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004823
jeffreyhuang37c4b132017-09-21 14:09:20 -07004824 // OPEN: Settings > Developer options > USB debugging > Info dialog
4825 // CATEGORY: SETTINGS
4826 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004827 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004828
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004829 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4830 // CATEGORY: SETTINGS
4831 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004832 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004833
Fan Zhange5b34302017-10-09 15:58:38 -07004834 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004835 // CATEGORY: SETTINGS
4836 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004837 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4838
jeffreyhuang49de1252017-10-05 15:25:14 -07004839 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4840 // CATEGORY: SETTINGS
4841 // OS: P
4842 DIALOG_LOG_PERSIST = 1225;
4843
Beverly04216872017-09-28 10:55:32 -04004844 // ACTION: DND Settings > Priority only allows > Alarms toggle
4845 // SUBTYPE: 0 is off, 1 is on
4846 // CATEGORY: SETTINGS
4847 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004848 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004849
4850 // ACTION: DND Settings > Priority only allows > Media toggle
4851 // SUBTYPE: 0 is off, 1 is on
4852 // CATEGORY: SETTINGS
4853 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004854 ACTION_ZEN_ALLOW_MEDIA = 1227;
4855
4856 // An autofill service explicitly defined which view should commit the autofill context
4857 // Package: Package of app that is autofilled
4858 // OS: P
4859 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4860 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4861
4862 // The autofill context was commited when the user clicked a view explicitly marked by the
4863 // service as committing it
4864 // Package: Package of app that is autofilled
4865 // OS: P
4866 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004867
Malcolm Chen4f17b172017-10-19 13:54:07 -07004868 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4869 // CATEGORY: SETTINGS
4870 // OS: P
4871 WIFI_CALLING_FOR_SUB = 1230;
4872
Felipe Leme17292d12017-10-24 14:03:10 -07004873 // An autofill service asked to disable autofill for a given application.
4874 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004875 // OS: P
4876 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004877 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme17292d12017-10-24 14:03:10 -07004878 AUTOFILL_SERVICE_DISABLED_APP = 1231;
4879
4880 // An autofill service asked to disable autofill for a given activity.
4881 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004882 // OS: P
4883 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4884 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08004885 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme17292d12017-10-24 14:03:10 -07004886 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
4887
jackqdyuleide3b7af2017-10-24 16:32:58 -07004888 // ACTION: Stop an app and turn on background check
4889 // CATEGORY: SETTINGS
4890 // OS: P
4891 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
4892
4893 // FIELD: The action type for each anomaly
4894 // CATEGORY: SETTINGS
4895 // OS: P
4896 FIELD_ANOMALY_ACTION_TYPE = 1234;
4897
4898 // OPEN: Settings -> Battery -> Wakelock anomaly
4899 // CATEGORY: SETTINGS
4900 // OS: P
4901 ANOMALY_TYPE_WAKELOCK = 1235;
4902
4903 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
4904 // CATEGORY: SETTINGS
4905 // OS: P
4906 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
4907
4908 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
4909 // CATEGORY: SETTINGS
4910 // OS: P
4911 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
4912
Fan Zhanga4a01722017-10-30 17:54:24 -07004913 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
4914 // OS: P
4915 DIALOG_OEM_LOCK_INFO = 1238;
4916
jackqdyulei331fafb2017-11-01 14:01:24 -07004917 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
4918 // CATEGORY: SETTINGS
4919 // OS: P
4920 ACTION_WIFI_AUTO_SIGN_IN = 1239;
4921
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07004922 // Open: Settings > System > About phone > IMEI
4923 // CATEGORY: SETTINGS
4924 // OS: P
4925 DIALOG_IMEI_INFO = 1240;
4926
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07004927 // In permission action fields tagged like this reference the permission affected
4928 FIELD_PERMISSION = 1241;
4929
4930 // ACTION: An app requested a permission and we asked to user to approve the request
4931 // PACKAGE: The package name of the app requesting the permission
4932 // Tag FIELD_PERMISSION: Name of the permission requested
4933 ACTION_PERMISSION_REQUESTED = 1242;
4934
4935 // ACTION: An app was granted the a permission. This can happen after a user approved a request
4936 // or automatically. In the second case there will not be an
4937 // ACTION_PERMISSION_REQUESTED.
4938 // PACKAGE: The package name of the app that was granted the permission
4939 // Tag FIELD_PERMISSION: Name of the permission granted
4940 ACTION_PERMISSION_GRANTED = 1243;
4941
4942 // ACTION: An app requested the a permission and the request was denied by the user or a device
4943 // policy
4944 // PACKAGE: The package name of the app requesting the permission
4945 // Tag FIELD_PERMISSION: Name of the permission denied
4946 ACTION_PERMISSION_DENIED = 1244;
4947
4948 // ACTION: A permission was revoked
4949 // PACKAGE: The package name of the app the permission was revoked for
4950 // Tag FIELD_PERMISSION: Name of the permission revoked
4951 ACTION_PERMISSION_REVOKED = 1245;
4952
jeffreyhuang594314c2017-11-01 10:26:15 -07004953 // OPEN: Settings > System > About Phone > Sim status
4954 // CATEGORY: SETTINGS
4955 // OS: P
4956 DIALOG_SIM_STATUS = 1246;
4957
jeffreyhuang3bd59782017-11-02 11:08:28 -07004958 // OPEN: Settings > System > About Phone > Android Version
4959 // CATEGORY: SETTINGS
4960 // OS: P
4961 DIALOG_FIRMWARE_VERSION = 1247;
4962
jackqdyulei8fe97542017-11-08 16:23:43 -08004963 // OPEN: Settings > Network & internet > Menu > Private DNS
4964 // CATEGORY: SETTINGS
4965 // OS: P
4966 DIALOG_PRIVATE_DNS = 1248;
4967
4968 // ACTION: A private dns mode been selected by user
4969 // CATEGORY: SETTINGS
4970 // OS: P
4971 ACTION_PRIVATE_DNS_MODE = 1249;
4972
Jan Althausae5eb832017-11-06 12:31:59 +01004973 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
4974 // CATEGORY: TEXT_SELECTION_SESSION
4975 // OS: P
4976 FIELD_SELECTION_RANGE_START = 1250;
4977
4978 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
4979 // CATEGORY: TEXT_SELECTION_SESSION
4980 // OS: P
4981 FIELD_SELECTION_RANGE_END = 1251;
4982
4983 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4984 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4985 // CATEGORY: TEXT_SELECTION_SESSION
4986 // OS: P
4987 FIELD_SELECTION_SMART_RANGE_START = 1252;
4988
4989 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
4990 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4991 // CATEGORY: TEXT_SELECTION_SESSION
4992 // OS: P
4993 FIELD_SELECTION_SMART_RANGE_END = 1253;
4994
4995 // FIELD: the entity type of the text currently selected.
4996 // CATEGORY: TEXT_SELECTION_SESSION
4997 // OS: P
4998 FIELD_SELECTION_ENTITY_TYPE = 1254;
4999
5000 // FIELD: the type of widget the selection was made in.
5001 // CATEGORY: TEXT_SELECTION_SESSION
5002 // OS: P
5003 FIELD_SELECTION_WIDGET_TYPE = 1255;
5004
5005 // FIELD: the name of the text classifier model used.
5006 // CATEGORY: TEXT_SELECTION_SESSION
5007 // OS: P
5008 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5009
Beverly625442d2017-11-03 17:27:02 -04005010 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5011 // CATEGORY: SETTINGS
5012 // OS: P
5013 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5014
5015 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5016 // CATEGORY: SETTINGS
5017 // OS: P
5018 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5019
5020 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5021 // CATEGORY: SETTINGS
5022 // OS: P
5023 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5024
5025 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5026 // CATEGORY: SETTINGS
5027 // OS: P
5028 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5029
5030 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5031 // CATEGORY: SETTINGS
5032 // OS: P
5033 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5034
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005035 // FIELD: the version of the widget the selection was made in.
5036 // CATEGORY: TEXT_SELECTION_SESSION
5037 // OS: P
5038 FIELD_SELECTION_WIDGET_VERSION = 1262;
5039
jackqdyulei63193602017-11-27 13:46:48 -08005040 // OPEN: Settings > Battery(version 2)
5041 // CATEGORY: SETTINGS
5042 // OS: P
5043 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5044
jackqdyulei6139eab2017-11-29 14:38:32 -08005045 // OPEN: Settings > Connected devices > Connection preferences
5046 // CATEGORY: SETTINGS
5047 // OS: P
5048 CONNECTION_DEVICE_ADVANCED = 1264;
5049
Fan Zhang5235c052017-12-05 13:49:35 -08005050 // OPEN: Settings > Security > Screen lock gear icon
5051 // CATEGORY: SETTINGS
5052 // OS: P
5053 SCREEN_LOCK_SETTINGS = 1265;
5054
Beverlybf16c142017-11-27 16:21:34 -05005055 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5056 // CATEGORY: SETTINGS
5057 // OS: P
5058 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005059
Beverlybf16c142017-11-27 16:21:34 -05005060 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5061 // CATEGORY: SETTINGS
5062 // OS: P
5063 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5064
5065 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5066 // CATEGORY: SETTINGS
5067 // OS: P
5068 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5069
5070 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5071 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5072 // CATEGORY: SETTINGS
5073 // OS: P
5074 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5075
5076 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5077 // CATEGORY: SETTINGS
5078 // OS: P
5079 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5080
Felipe Leme5e047202017-12-05 16:30:06 -08005081 // Tag of a field for the number of ids in an autofill field classification request.
5082 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5083
5084 // An autofill service updated its user data
5085 // Package: Package of the autofill service that updated the user data
5086 // Counter: number of fields added (or 0 if reset)
5087 // OS: P
5088 AUTOFILL_USERDATA_UPDATED = 1272;
5089
5090 // Some data entered by the user matched the field classification requested by the service.
5091 // Package: Package of app that is autofilled
5092 // Counter: number of matches found
5093 // OS: P
5094 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5095 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
5096 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5097
5098 // Tag used to report autofill field classification scores
5099 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5100
Jerry Zhang18be8db2017-12-15 15:24:41 -08005101 // ACTION: Usb config has been changed to charging
5102 // CATEGORY: SETTINGS
5103 // OS: P
5104 ACTION_USB_CONFIG_CHARGING = 1275;
5105
5106 // ACTION: Usb config has been changed to mtp (file transfer)
5107 // CATEGORY: SETTINGS
5108 // OS: P
5109 ACTION_USB_CONFIG_MTP = 1276;
5110
5111 // ACTION: Usb config has been changed to ptp (photo transfer)
5112 // CATEGORY: SETTINGS
5113 // OS: P
5114 ACTION_USB_CONFIG_PTP = 1277;
5115
5116 // ACTION: Usb config has been changed to rndis (usb tethering)
5117 // CATEGORY: SETTINGS
5118 // OS: P
5119 ACTION_USB_CONFIG_RNDIS = 1278;
5120
5121 // ACTION: Usb config has been changed to midi
5122 // CATEGORY: SETTINGS
5123 // OS: P
5124 ACTION_USB_CONFIG_MIDI = 1279;
5125
5126 // ACTION: Usb config has been changed to accessory
5127 // CATEGORY: SETTINGS
5128 // OS: P
5129 ACTION_USB_CONFIG_ACCESSORY = 1280;
5130
jackqdyuleie04138d2018-01-08 17:51:57 -08005131 // OPEN: Settings > Battery > Smart Battery
5132 // CATEGORY: SETTINGS
5133 // OS: P
5134 FUELGAUGE_SMART_BATTERY = 1281;
5135
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005136 // ACTION: User tapped Screenshot in the power menu.
5137 // CATEGORY: GLOBAL_SYSTEM_UI
5138 // OS: P
5139 ACTION_SCREENSHOT_POWER_MENU = 1282;
5140
Felipe Leme3e099112018-01-18 12:57:45 -08005141 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005142 // CATEGORY: SETTINGS
5143 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005144 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005145
Felipe Leme3e099112018-01-18 12:57:45 -08005146 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005147 // CATEGORY: SETTINGS
5148 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005149 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005150
jackqdyuleid9821242018-01-09 17:42:52 -08005151 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5152 // CATEGORY: SETTINGS
5153 // OS: P
5154 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5155
Beverly92c25682018-01-22 09:27:19 -05005156 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5157 // CATEGORY: SETTINGS
5158 // OS: P
5159 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5160
Mike Digmanc94759d2018-01-23 11:01:21 -08005161 // ACTION: Rotate suggestion accepted in rotation locked mode
5162 // CATEGORY: GLOBAL_SYSTEM_UI
5163 // OS: P
5164 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5165
5166 // OPEN: Rotation suggestion shown in rotation locked mode
5167 // CATEGORY: GLOBAL_SYSTEM_UI
5168 // OS: P
5169 ROTATION_SUGGESTION_SHOWN = 1288;
5170
Beverlybf16c142017-11-27 16:21:34 -05005171 // ---- End P Constants, all P constants go above this line ----
Adrian Roos159ef7b2016-02-25 11:58:32 -08005172 // Add new aosp constants above this line.
5173 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05005174 }
5175}