blob: d61f228adb69b50cf84b1427f42c0d739bcc35e2 [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
Mathew Inwoodac1c19a2018-04-12 12:17:57 +0100181 // Access method for hidden API events. Type of data tagged with
182 // FIELD_HIDDEN_API_ACCESS_METHOD.
183 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h
184 enum HiddenApiAccessMethod {
185 ACCESS_METHOD_NONE = 0; // never logged, included for completeness
186 ACCESS_METHOD_REFLECTION = 1;
187 ACCESS_METHOD_JNI = 2;
188 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness
189 }
190
Chris Wren77781d32016-01-11 14:49:26 -0500191 // Known visual elements: views or controls.
192 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500193 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500194 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500195
196 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500197 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500198
199 // OPEN: Settings > Accessibility
200 // CATEGORY: SETTINGS
201 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500202 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500203
204 // OPEN: Settings > Accessibility > Captions
205 // CATEGORY: SETTINGS
206 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500207 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500208
209 // OPEN: Settings > Accessibility > [Service]
210 // CATEGORY: SETTINGS
211 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500212 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500213
214 // OPEN: Settings > Accessibility > Color correction
215 // CATEGORY: SETTINGS
216 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500217 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500218
219 // OPEN: Settings > Accessibility > Accessibility shortcut
220 // CATEGORY: SETTINGS
221 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500222 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500223
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700224 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
225 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
226 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500227 // CATEGORY: SETTINGS
228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500229 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500230
231 // OPEN: Settings > Accounts
232 // CATEGORY: SETTINGS
233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500234 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500235
236 // OPEN: Settings > Accounts > [Single Account Sync Settings]
237 // CATEGORY: SETTINGS
238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500239 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500240
241 // OPEN: Settings > Accounts > Add an account
242 // CATEGORY: SETTINGS
243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500244 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500245
246 // OPEN: Settings > Accounts > [List of accounts when more than one]
247 // CATEGORY: SETTINGS
248 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500249 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500250
251 // OPEN: Settings > Cellular network settings > APNs
252 // CATEGORY: SETTINGS
253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500254 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500255
256 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
257 // CATEGORY: SETTINGS
258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500259 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500262 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500263
264 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500265 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500266
267 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500268 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500269
270 // OPEN: Settings > Apps > Configure apps > App links > [App]
271 // CATEGORY: SETTINGS
272 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500273 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500274
275 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500276 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500277
278 // OPEN: Settings > Internal storage > Apps storage > [App]
279 // CATEGORY: SETTINGS
280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500281 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500282
283 // OPEN: Settings > Apps > [App info]
284 // CATEGORY: SETTINGS
285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500286 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500287
288 // OPEN: Settings > Memory > App usage > [App Memory usage]
289 // CATEGORY: SETTINGS
290 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500291 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500292
293 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500294 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500295
296 // OPEN: Settings > Memory > App usage
297 // CATEGORY: SETTINGS
298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500299 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500300
301 // OPEN: Settings > Bluetooth
302 // CATEGORY: SETTINGS
303 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500304 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500305
306 // OPEN: Choose Bluetooth device (ex: when sharing)
307 // CATEGORY: SETTINGS
308 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500309 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500310
311 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500312 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500313
314 // OPEN: Settings > Security > Choose screen lock
315 // CATEGORY: SETTINGS
316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500317 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500318
319 // OPEN: Settings > Security > Choose screen lock > Choose your password
320 // CATEGORY: SETTINGS
321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500322 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
325 // CATEGORY: SETTINGS
326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500327 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OPEN: Settings > Security > Choose screen lock > Confirm your password
330 // CATEGORY: SETTINGS
331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500332 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500333
334 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
335 // CATEGORY: SETTINGS
336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500337 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OPEN: Settings > Security > Encrypt phone
340 // CATEGORY: SETTINGS
341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500342 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings > Security > Encrypt phone > Confirm
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OPEN: Settings > Search results
350 // CATEGORY: SETTINGS
351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500352 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500353
354 // OPEN: Settings (Root page)
355 // CATEGORY: SETTINGS
356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500357 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500358
359 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500360 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500361
362 // OPEN: Settings > Data usage
363 // CATEGORY: SETTINGS
364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500365 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500366
367 // OPEN: Settings > Date & time
368 // CATEGORY: SETTINGS
369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500370 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500371
372 // OPEN: Settings > Developer options
373 // CATEGORY: SETTINGS
374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500375 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500376
377 // OPEN: Settings > About phone
378 // CATEGORY: SETTINGS
379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500380 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500381
382 // OPEN: Settings > About phone > Status > IMEI information
383 // CATEGORY: SETTINGS
384 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500385 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > Internal storage
388 // CATEGORY: SETTINGS
389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500390 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500391
392 // OPEN: Settings > About phone > Status > SIM status
393 // CATEGORY: SETTINGS
394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500395 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500396
397 // OPEN: Settings > About phone > Status
398 // CATEGORY: SETTINGS
399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500400 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500401
402 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500403 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500404
405 // OPEN: Settings > Display
406 // CATEGORY: SETTINGS
407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500408 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500409
410 // OPEN: Settings > Display > Daydream
411 // CATEGORY: SETTINGS
412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500413 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500414
415 // OPEN: Settings > Security > Screen lock > Secure start-up
416 // CATEGORY: SETTINGS
417 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500418 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500419
420 // OPEN: Settings > Security > Nexus Imprint
421 // CATEGORY: SETTINGS
422 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500423 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500424
425 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500426 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500427
428 // OPEN: Settings > Battery > History details
429 // CATEGORY: SETTINGS
430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500431 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500432
433 // OPEN: Settings > Battery > Battery saver
434 // CATEGORY: SETTINGS
435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500436 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500437
438 // OPEN: Settings > Battery > [App Use details]
439 // CATEGORY: SETTINGS
440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500441 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500442
443 // OPEN: Settings > Battery
444 // CATEGORY: SETTINGS
445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500446 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500447
448 // OPEN: Settings > Home
449 // CATEGORY: SETTINGS
450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500451 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Settings > Security > SIM card lock settings
454 // CATEGORY: SETTINGS
455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500456 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500457
458 // OPEN: Settings > Language & input
459 // CATEGORY: SETTINGS
460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500461 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500462
463 // OPEN: Settings > Language & input > Physical keyboard
464 // CATEGORY: SETTINGS
465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500466 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500467
468 // OPEN: Settings > Language & input > Spell checker
469 // CATEGORY: SETTINGS
470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500471 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500472
473 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500474 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500475
476 // OPEN: Settings > Language & input > Personal dictionary
477 // CATEGORY: SETTINGS
478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500479 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500480
481 // OPEN: Settings > Language & input > Add word
482 // CATEGORY: SETTINGS
483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500484 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OPEN: Settings > Location
487 // CATEGORY: SETTINGS
488 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500489 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500490
491 // OPEN: Settings > Location > Location mode
492 // CATEGORY: SETTINGS
493 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500494 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500495
496 // OPEN: Settings > Apps
497 // CATEGORY: SETTINGS
498 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500499 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Backup & reset > Factory data reset
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Data usage > Network restrictions
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: Settings > More > Android Beam
517 // CATEGORY: SETTINGS
518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500519 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500520
521 // OPEN: Settings > Tap & pay
522 // CATEGORY: SETTINGS
523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500524 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500525
526 // OPEN: Settings > Sound & notification
527 // CATEGORY: SETTINGS
528 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500529 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500530
531 // OPEN: Settings > Sound & notification > App notifications > [App]
532 // CATEGORY: SETTINGS
533 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500534 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500535
536 // OPEN: Settings > Sound & notification > Other sounds
537 // CATEGORY: SETTINGS
538 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500539 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500540
541 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500542 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500543
544 // OPEN: Settings Widget > Notification log
545 // CATEGORY: SETTINGS
546 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500547 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500548
549 // OPEN: Settings > Sound & notification > Do not disturb
550 // CATEGORY: SETTINGS
551 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500552 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500553
554 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500555 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500556
557 // OPEN: Print job notification > Print job settings
558 // CATEGORY: SETTINGS
559 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500560 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500561
562 // OPEN: Settings > Printing > [Print Service]
563 // CATEGORY: SETTINGS
564 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500565 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500566
567 // OPEN: Settings > Printing
568 // CATEGORY: SETTINGS
569 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500570 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500571
572 // OPEN: Settings > Backup & reset
573 // CATEGORY: SETTINGS
574 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500575 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500576
577 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500578 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OPEN: Settings > Backup & reset > Network settings reset
581 // CATEGORY: SETTINGS
582 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500583 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500584
585 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
586 // CATEGORY: SETTINGS
587 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500588 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500589
590 // OPEN: Settings > Developer Options > Running Services
591 // CATEGORY: SETTINGS
592 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500593 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500594
595 // OPEN: Settings > Security > Screen pinning
596 // CATEGORY: SETTINGS
597 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500598 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500599
600 // OPEN: Settings > Security
601 // CATEGORY: SETTINGS
602 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500603 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500604
605 // OPEN: Settings > SIM cards
606 // CATEGORY: SETTINGS
607 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500608 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500609
610 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500611 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500612
613 // OPEN: Settings > More > Tethering & portable hotspot
614 // CATEGORY: SETTINGS
615 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500616 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500617
618 // OPEN: Settings > Security > Trust agents
619 // CATEGORY: SETTINGS
620 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500621 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500622
623 // OPEN: Settings > Security > Trusted credentials
624 // CATEGORY: SETTINGS
625 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500626 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500627
628 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
629 // CATEGORY: SETTINGS
630 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500631 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500632
633 // OPEN: Settings > Language & input > Text-to-speech output
634 // CATEGORY: SETTINGS
635 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500636 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: Settings > Security > Apps with usage access
639 // CATEGORY: SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: Settings > Users
644 // CATEGORY: SETTINGS
645 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500646 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500647
648 // OPEN: Settings > Users > [Restricted profile app & content access]
649 // CATEGORY: SETTINGS
650 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500651 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500652
653 // OPEN: Settings > Users > [User settings]
654 // CATEGORY: SETTINGS
655 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500656 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500657
658 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500659 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500660
661 // OPEN: Settings > More > VPN
662 // CATEGORY: SETTINGS
663 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500664 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500665
666 // OPEN: Settings > Display > Choose wallpaper from
667 // CATEGORY: SETTINGS
668 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500669 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500670
671 // OPEN: Settings > Display > Cast
672 // CATEGORY: SETTINGS
673 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500674 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500675
676 // OPEN: Settings > Wi-Fi
677 // CATEGORY: SETTINGS
678 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500679 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500680
681 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
682 // CATEGORY: SETTINGS
683 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500684 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // OPEN: Settings > More > Wi-Fi Calling
687 // CATEGORY: SETTINGS
688 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500689 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500690
691 // OPEN: Settings > Wi-Fi > Saved networks
692 // CATEGORY: SETTINGS
693 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500694 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500695
696 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500697 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500698
699 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500700 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500701
702 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
703 // CATEGORY: SETTINGS
704 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500705 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500706
707 // OPEN: Settings > More
708 // CATEGORY: SETTINGS
709 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500710 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500711
712 // OPEN: Quick Settings Panel
713 // CATEGORY: QUICK_SETTINGS
714 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500715 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500716
717 // OPEN: QS Airplane mode tile shown
718 // ACTION: QS Airplane mode tile tapped
719 // SUBTYPE: 0 is off, 1 is on
720 // CATEGORY: QUICK_SETTINGS
721 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500722 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500723
724 // OPEN: QS Bluetooth tile shown
725 // ACTION: QS Bluetooth tile tapped
726 // SUBTYPE: 0 is off, 1 is on
727 // CATEGORY: QUICK_SETTINGS
728 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500729 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500730
731 // OPEN: QS Cast tile shown
732 // ACTION: QS Cast tile tapped
733 // CATEGORY: QUICK_SETTINGS
734 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500735 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500736
737 // OPEN: QS Cellular tile shown
738 // ACTION: QS Cellular tile tapped
739 // CATEGORY: QUICK_SETTINGS
740 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500741 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500742
743 // OPEN: QS Color inversion tile shown
744 // ACTION: QS Color inversion tile tapped
745 // SUBTYPE: 0 is off, 1 is on
746 // CATEGORY: QUICK_SETTINGS
747 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500748 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500749
750 // OPEN: QS Cellular tile > Cellular detail panel
751 // CATEGORY: QUICK_SETTINGS
752 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500753 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500754
755 // OPEN: QS Do not disturb tile shown
756 // ACTION: QS Do not disturb tile tapped
757 // SUBTYPE: 0 is off, 1 is on
758 // CATEGORY: QUICK_SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OPEN: QS Flashlight tile shown
763 // ACTION: QS Flashlight tile tapped
764 // SUBTYPE: 0 is off, 1 is on
765 // CATEGORY: QUICK_SETTINGS
766 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500767 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500768
769 // OPEN: QS Hotspot tile shown
770 // ACTION: QS Hotspot tile tapped
771 // SUBTYPE: 0 is off, 1 is on
772 // CATEGORY: QUICK_SETTINGS
773 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500774 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500775
776 // OPEN: QS 3P tile shown
777 // ACTION: QS 3P tile tapped
778 // CATEGORY: QUICK_SETTINGS
779 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500780 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500781
782 // OPEN: QS Location tile shown
783 // ACTION: QS Location tile tapped
784 // SUBTYPE: 0 is off, 1 is on
785 // CATEGORY: QUICK_SETTINGS
786 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500787 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500788
789 // OPEN: QS Rotation tile shown
790 // ACTION: QS Rotation tile tapped
791 // SUBTYPE: 0 is off, 1 is on
792 // CATEGORY: QUICK_SETTINGS
793 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500794 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500795
796 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500797 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500798
799 // OPEN: QS User list panel
800 // CATEGORY: QUICK_SETTINGS
801 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500802 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500803
804 // OPEN: QS WiFi tile shown
805 // ACTION: QS WiFi tile tapped
806 // SUBTYPE: 0 is off, 1 is on
807 // CATEGORY: QUICK_SETTINGS
808 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500809 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500810
811 // OPEN: Notification Panel (including lockscreen)
812 // CATEGORY: NOTIFICATION
813 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500814 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500815
816 // OPEN: Notification in panel became visible.
817 // PACKAGE: App that posted the notification.
818 // ACTION: Notification is tapped.
819 // PACKAGE: App that posted the notification
820 // DETAIL: Notification is expanded by user.
821 // PACKAGE: App that posted the notification
822 // DISMISS: Notification is dismissed.
823 // PACKAGE: App that posted the notification
824 // SUBTYPE: Dismiss reason from NotificationManagerService.java
825 // CATEGORY: NOTIFICATION
826 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500827 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // ACTION: User tapped notification action
830 // PACKAGE: App that posted the notification
831 // SUBTYPE: Index of action on notification
832 // CATEGORY: NOTIFICATION
833 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500834 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500835
836 // OPEN: Settings > Apps > Configure apps > App permissions
837 // CATEGORY: SETTINGS
838 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500839 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // OPEN: Settings > Location > Scanning
842 // CATEGORY: SETTINGS
843 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500844 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500845
846 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500847 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500848
849 // OPEN: Settings > Sound & notification > App notifications
850 // CATEGORY: SETTINGS
851 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500852 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // ACTION: Settings > Wi-Fi > Overflow > Add Network
855 // CATEGORY: SETTINGS
856 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500857 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500858
859 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700860 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500861 // CATEGORY: SETTINGS
862 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500863 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500864
865 // ACTION: Settings > Wi-Fi > Overflow > Refresh
866 // CATEGORY: SETTINGS
867 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500868 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500869
870 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
871 // CATEGORY: SETTINGS
872 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500873 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500874
875 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700876 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500877 // CATEGORY: SETTINGS
878 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500879 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500880
881 // ACTION: Settings > Wi-Fi > Toggle on
882 // CATEGORY: SETTINGS
883 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500884 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500885
886 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500887 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500888
889 // OPEN: Settings > Sound & notification > DND > Priority only allows
890 // CATEGORY: SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // OPEN: Settings > Sound & notification > DND > Automatic rules
895 // CATEGORY: SETTINGS
896 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500897 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500898
899 // OPEN: Settings > Apps > Configure apps > App links
900 // CATEGORY: SETTINGS
901 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500902 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500903
904 // OPEN: Settings > Sound & notification > DND > [Time based rule]
905 // CATEGORY: SETTINGS
906 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500907 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500908
909 // OPEN: Settings > Sound & notification > DND > [External rule]
910 // CATEGORY: SETTINGS
911 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500912 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // OPEN: Settings > Sound & notification > DND > [Event rule]
915 // CATEGORY: SETTINGS
916 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500917 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500918
919 // ACTION: App notification settings > Block Notifications
920 // CATEGORY: SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // ACTION: Notification shade > Dismiss all button
925 // CATEGORY: NOTIFICATION
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // OPEN: QS Do Not Disturb detail panel
930 // CATEGORY: QUICK_SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // OPEN: QS Bluetooth detail panel
935 // CATEGORY: QUICK_SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // OPEN: QS Cast detail panel
940 // CATEGORY: QUICK_SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // OPEN: QS Wi-Fi detail panel
945 // CATEGORY: QUICK_SETTINGS
946 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500947 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500948
949 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
950 // SUBTYPE: 0 is off, 1 is on
951 // CATEGORY: QUICK_SETTINGS
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
956 // SUBTYPE: 0 is off, 1 is on
957 // CATEGORY: QUICK_SETTINGS
958 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500959 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500960
961 // ACTION: QS Cellular detail panel > Cellular toggle
962 // SUBTYPE: 0 is off, 1 is on
963 // CATEGORY: QUICK_SETTINGS
964 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500965 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500966
967 // ACTION: QS User list panel > Select different user
968 // CATEGORY: QUICK_SETTINGS
969 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500970 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500971
972 // ACTION: QS Cast detail panel > Select cast device
973 // CATEGORY: QUICK_SETTINGS
974 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500975 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500976
977 // ACTION: QS Cast detail panel > Disconnect cast device
978 // CATEGORY: QUICK_SETTINGS
979 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500980 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500981
982 // ACTION: Settings > Bluetooth > Toggle
983 // SUBTYPE: 0 is off, 1 is on
984 // CATEGORY: SETTINGS
985 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500986 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500987
988 // ACTION: Settings > Bluetooth > Overflow > Refresh
989 // CATEGORY: SETTINGS
990 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500991 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500992
993 // ACTION: Settings > Bluetooth > Overflow > Rename this device
994 // CATEGORY: SETTINGS
995 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500996 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500997
998 // ACTION: Settings > Bluetooth > Overflow > Show received files
999 // CATEGORY: SETTINGS
1000 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001001 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001002
1003 // ACTION: QS DND details panel > Increase / Decrease exit time
1004 // SUBTYPE: true is increase, false is decrease
1005 // CATEGORY: QUICK_SETTINGS
1006 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001007 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001008
1009 // ACTION: QS DND details panel > [Exit condition]
1010 // CATEGORY: QUICK_SETTINGS
1011 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001012 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001013
1014 // ACTION: QS DND details panel > [DND mode]
1015 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1016 // CATEGORY: QUICK_SETTINGS
1017 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001018 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001019
1020 // ACTION: QS DND detail panel > DND toggle
1021 // SUBTYPE: 0 is off, 1 is on
1022 // CATEGORY: QUICK_SETTINGS
1023 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001024 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001025
1026 // ACTION: DND Settings > Priority only allows > Reminder toggle
1027 // SUBTYPE: 0 is off, 1 is on
1028 // CATEGORY: SETTINGS
1029 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001030 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001031
1032 // ACTION: DND Settings > Priority only allows > Event toggle
1033 // SUBTYPE: 0 is off, 1 is on
1034 // CATEGORY: SETTINGS
1035 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001036 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001037
1038 // ACTION: DND Settings > Priority only allows > Messages
1039 // SUBTYPE: 0 is off, 1 is on
1040 // CATEGORY: SETTINGS
1041 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001042 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001043
1044 // ACTION: DND Settings > Priority only allows > Calls
1045 // SUBTYPE: 0 is off, 1 is on
1046 // CATEGORY: SETTINGS
1047 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001048 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001049
1050 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1051 // SUBTYPE: 0 is off, 1 is on
1052 // CATEGORY: SETTINGS
1053 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001054 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001055
1056 // ACTION: DND Settings > Automatic rules > Add rule
1057 // CATEGORY: SETTINGS
1058 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001059 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001060
1061 // ACTION: DND Settings > Automatic rules > Add rule > OK
1062 // CATEGORY: SETTINGS
1063 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001064 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001065
1066 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1067 // CATEGORY: SETTINGS
1068 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001069 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001070
1071 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1072 // CATEGORY: SETTINGS
1073 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001074 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001075
1076 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1077 // SUBTYPE: 0 is off, 1 is on
1078 // CATEGORY: SETTINGS
1079 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001080 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // ACTION: Settings > More > Airplane mode toggle
1083 // SUBTYPE: 0 is off, 1 is on
1084 // CATEGORY: SETTINGS
1085 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001086 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001087
1088 // ACTION: Settings > Data usage > Cellular data toggle
1089 // SUBTYPE: 0 is off, 1 is on
1090 // CATEGORY: SETTINGS
1091 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001092 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // OPEN: Settings > Sound & notification > Notification access
1095 // CATEGORY: SETTINGS
1096 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001097 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // OPEN: Settings > Sound & notification > Do Not Disturb access
1100 // CATEGORY: SETTINGS
1101 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001102 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001103
1104 // OPEN: Settings > Apps > Configure apps > Default Apps
1105 // CATEGORY: SETTINGS
1106 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001107 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001108
1109 // OPEN: Settings > Internal storage > Apps storage
1110 // CATEGORY: SETTINGS
1111 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001112 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001113
1114 // OPEN: Settings > Security > Usage access
1115 // CATEGORY: SETTINGS
1116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001117 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // OPEN: Settings > Battery > Battery optimization
1120 // CATEGORY: SETTINGS
1121 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001122 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001123
1124 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001125 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001126
1127 // ACTION: Lockscreen > Unlock gesture
1128 // CATEGORY: GLOBAL_SYSTEM_UI
1129 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001130 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001131
1132 // ACTION: Lockscreen > Pull shade open
1133 // CATEGORY: GLOBAL_SYSTEM_UI
1134 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001135 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001136
1137 // ACTION: Lockscreen > Tap on lock, shows hint
1138 // CATEGORY: GLOBAL_SYSTEM_UI
1139 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001140 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001141
1142 // ACTION: Lockscreen > Camera
1143 // CATEGORY: GLOBAL_SYSTEM_UI
1144 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001145 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001146
1147 // ACTION: Lockscreen > Dialer
1148 // CATEGORY: GLOBAL_SYSTEM_UI
1149 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001150 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001151
1152 // ACTION: Lockscreen > Tap on lock, locks phone
1153 // CATEGORY: GLOBAL_SYSTEM_UI
1154 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001155 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001156
1157 // ACTION: Lockscreen > Tap on notification, false touch rejection
1158 // CATEGORY: GLOBAL_SYSTEM_UI
1159 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001160 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // ACTION: Lockscreen > Swipe down to open quick settings
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001165 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // ACTION: Swipe down to open quick settings when unlocked
1168 // CATEGORY: GLOBAL_SYSTEM_UI
1169 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001170 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // ACTION: Notification shade > Tap to open quick settings
1173 // CATEGORY: GLOBAL_SYSTEM_UI
1174 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001175 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001176
1177 // OPEN: Lockscreen
1178 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1179 // CATEGORY: GLOBAL_SYSTEM_UI
1180 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001181 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001182
1183 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1184 // CATEGORY: GLOBAL_SYSTEM_UI
1185 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001186 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001187
1188 // OPEN: Screen turned on
1189 // SUBTYPE: 2 is user action
1190 // CATEGORY: GLOBAL_SYSTEM_UI
1191 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001192 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001193
1194 // OPEN: Notification caused sound, vibration, and/or LED blink
1195 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1196 // CATEGORY: NOTIFICATION
1197 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001198 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001199
1200 // ACTION: Lockscreen > Emergency Call button
1201 // CATEGORY: GLOBAL_SYSTEM_UI
1202 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001203 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001204
1205 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1206 // CATEGORY: SETTINGS
1207 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001208 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001209
1210 // OPEN: Settings > Memory
1211 // CATEGORY: SETTINGS
1212 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001213 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001214
1215 // ACTION: Settings > Display > When device is rotated
1216 // CATEGORY: SETTINGS
1217 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001218 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001219
1220 // ACTION: Long press on notification to view controls
1221 // CATEGORY: NOTIFICATION
1222 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001223 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Notificatoin controls > Info button
1226 // CATEGORY: NOTIFICATION
1227 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001228 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // ACTION: Notification controls > Settings button
1231 // CATEGORY: NOTIFICATION
1232 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001233 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001234
1235 // OPEN: Volume Dialog (with hardware buttons)
1236 // CATEGORY: GLOBAL_SYSTEM_UI
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1241 // CATEGORY: GLOBAL_SYSTEM_UI
1242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001243 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // ACTION: Volume dialog > Adjust volume slider
1246 // SUBTYPE: volume level (0-7)
1247 // CATEGORY: GLOBAL_SYSTEM_UI
1248 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001249 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001250
1251 // ACTION: Volume dialog > Select non-active stream
1252 // SUBTYPE: stream (defined in AudioSystem.java)
1253 // CATEGORY: GLOBAL_SYSTEM_UI
1254 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001255 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001256
1257 // ACTION: Adjust volume with hardware key
1258 // SUBTYPE: volume level (0-7)
1259 // CATEGORY: GLOBAL_SYSTEM_UI
1260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001261 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001262
1263 // ACTION: Volume dialog > Mute a stream by tapping icon
1264 // SUBTYPE: mute is 1, audible is 2
1265 // CATEGORY: GLOBAL_SYSTEM_UI
1266 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001267 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001268
1269 // ACTION: Volume dialog > Change ringer mode by tapping icon
1270 // SUBTYPE: 2 is audible, 3 is vibrate
1271 // CATEGORY: GLOBAL_SYSTEM_UI
1272 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001273 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001274
1275 // ACTION: Chooser shown (share target, file open, etc.)
1276 // CATEGORY: GLOBAL_SYSTEM_UI
1277 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001278 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001279
1280 // ACTION: Chooser > User taps an app target
1281 // SUBTYPE: Index of target
1282 // CATEGORY: GLOBAL_SYSTEM_UI
1283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001284 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001285
1286 // ACTION: Chooser > User taps a service target
1287 // SUBTYPE: Index of target
1288 // CATEGORY: GLOBAL_SYSTEM_UI
1289 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001290 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001291
1292 // ACTION: Chooser > User taps a standard target
1293 // SUBTYPE: Index of target
1294 // CATEGORY: GLOBAL_SYSTEM_UI
1295 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001296 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001297
1298 // ACTION: QS Brightness Slider (with auto brightness disabled)
1299 // SUBTYPE: slider value
1300 // CATEGORY: QUICK_SETTINGS
1301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001302 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001303
1304 // ACTION: QS Brightness Slider (with auto brightness enabled)
1305 // SUBTYPE: slider value
1306 // CATEGORY: QUICK_SETTINGS
1307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001308 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001309
1310 // OPEN: Settings > Display > Brightness Slider
1311 // CATEGORY: SETTINGS
1312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001313 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001314
Christine Franks47175c32017-03-14 10:21:25 -07001315 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001316 // CATEGORY: SETTINGS
1317 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001318 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001319
1320 // OPEN: Display has entered dream mode
1321 // CATEGORY: GLOBAL_SYSTEM_UI
1322 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001323 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001324
1325 // OPEN: Display has entered ambient notification mode
1326 // CATEGORY: GLOBAL_SYSTEM_UI
1327 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001328 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // OPEN: Overview
1331 // CATEGORY: GLOBAL_SYSTEM_UI
1332 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001333 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001334
1335 // OPEN: Settings > About phone > Legal information
1336 // CATEGORY: SETTINGS
1337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001338 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001339
1340 // OPEN: Settings > Search > Perform search
1341 // CATEGORY: SETTINGS
1342 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001343 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001344
1345 // OPEN: Settings > System UI Tuner
1346 // CATEGORY: SETTINGS
1347 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001348 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001349
1350 // OPEN: Settings > System UI Tuner > Quick Settings
1351 // CATEGORY: SETTINGS
1352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001353 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001354
1355 // OPEN: Settings > System UI Tuner > Demo mode
1356 // CATEGORY: SETTINGS
1357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001358 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001359
1360 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1361 // PACKAGE: Tile
1362 // CATEGORY: SETTINGS
1363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001364 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1367 // PACKAGE: Tile
1368 // CATEGORY: SETTINGS
1369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001370 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001371
1372 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1373 // PACKAGE: Tile
1374 // CATEGORY: SETTINGS
1375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001376 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001377
1378 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1379 // PACKAGE: Icon
1380 // CATEGORY: SETTINGS
1381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001382 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001383
1384 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1385 // PACKAGE: Icon
1386 // CATEGORY: SETTINGS
1387 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001388 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001389
1390 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1391 // SUBTYPE: false is disabled, true is enabled
1392 // CATEGORY: SETTINGS
1393 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001394 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001395
1396 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1397 // SUBTYPE: false is disabled, true is enabled
1398 // CATEGORY: SETTINGS
1399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001400 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001401
1402 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1403 // SUBTYPE: 0 is disabled, 1 is enabled
1404 // CATEGORY: SETTINGS
1405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001406 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Settings > Developer options > Inactive apps
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // ACTION: Long press home to bring up assistant
1414 // CATEGORY: GLOBAL_SYSTEM_UI
1415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001416 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1419 // CATEGORY: SETTINGS
1420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001421 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: Fingerprint Enroll > Find Sensor
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1429 // CATEGORY: SETTINGS
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // OPEN: Fingerprint Enroll introduction
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // OPEN: Fingerprint Enroll onboarding
1439 // CATEGORY: SETTINGS
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // OPEN: Fingerprint Enroll > Let's Start!
1444 // CATEGORY: SETTINGS
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // OPEN: Fingerprint Enroll SUW > Let's Start!
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // OPEN: Fingerprint Enroll SUW > Find Sensor
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1459 // CATEGORY: SETTINGS
1460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001461 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001462
1463 // OPEN: Fingerprint Enroll SUW introduction
1464 // CATEGORY: SETTINGS
1465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001466 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001467
1468 // OPEN: Fingerprint Enroll SUW onboarding
1469 // CATEGORY: SETTINGS
1470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001471 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001472
1473 // ACTION: Add fingerprint > Enroll fingerprint
1474 // CATEGORY: SETTINGS
1475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001476 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001477
1478 // ACTION: Authenticate using fingerprint
1479 // CATEGORY: SETTINGS
1480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001481 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1484 // CATEGORY: SETTINGS
1485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001486 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001487
1488 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1489 // CATEGORY: SETTINGS
1490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001491 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001492
1493 // ACTION: Double tap camera shortcut
1494 // CATEGORY: GLOBAL_SYSTEM_UI
1495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001496 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001497
1498 // ACTION: Double twist camera shortcut
1499 // CATEGORY: GLOBAL_SYSTEM_UI
1500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001501 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001502
1503 // OPEN: QS Work Mode tile shown
1504 // ACTION: QS Work Mode tile tapped
1505 // SUBTYPE: 0 is off, 1 is on
1506 // CATEGORY: QUICK_SETTINGS
1507 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001508 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001509
1510 // OPEN: Settings > Developer Options > Background Check
1511 // CATEGORY: SETTINGS
1512 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001513 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001514
1515 // OPEN: QS Lock tile shown
1516 // ACTION: QS Lock tile tapped
1517 // SUBTYPE: 0 is off, 1 is on
1518 // CATEGORY: QUICK_SETTINGS
1519 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001520 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001521
1522 // OPEN: QS User Tile shown
1523 // CATEGORY: QUICK_SETTINGS
1524 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001525 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001526
1527 // OPEN: QS Battery tile shown
1528 // CATEGORY: QUICK_SETTINGS
1529 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001530 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001531
1532 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1533 // CATEGORY: SETTINGS
1534 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001535 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001536
1537 // ACTION: Visual interruptions > No screen interuptions toggle
1538 // SUBTYPE: 0 is off, 1 is on
1539 // CATEGORY: SETTINGS
1540 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001541 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001542
1543 // ACTION: Visual interruptions > No notification light toggle
1544 // SUBTYPE: 0 is off, 1 is on
1545 // CATEGORY: SETTINGS
1546 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001547 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001548
Julia Reynolds005c8b92017-08-24 10:35:53 -04001549 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001550 // CATEGORY: SETTINGS
1551 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001552 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001553
1554 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1555 // PACKAGE: Selected SMS app
1556 // CATEGORY: SETTINGS
1557 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001558 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001559
1560 // OPEN: QS Color modification tile shown
1561 // ACTION: QS Color modification tile tapped
1562 // SUBTYPE: 0 is off, 1 is on
1563 // CATEGORY: QUICK_SETTINGS
1564 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001565 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001566
1567 // OPEN: QS Custom tile shown
1568 // ACTION: QS Work Mode tile tapped
1569 // CATEGORY: QUICK_SETTINGS
1570 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001571 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001572
1573 // ACTION: Visual interruptions > Never turn off the screen toggle
1574 // SUBTYPE: 0 is off, 1 is on
1575 // CATEGORY: SETTINGS
1576 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001577 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001578
Chris Wren7c516842016-03-01 16:44:32 -05001579 // ACTION: Overview > Long-press task, drag to enter split-screen
1580 // CATEGORY: GLOBAL_SYSTEM_UI
1581 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001582 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1583
Chris Wren7c516842016-03-01 16:44:32 -05001584 // ACTION: In App > Long-press Overview button to enter split-screen
1585 // CATEGORY: GLOBAL_SYSTEM_UI
1586 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001587 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1588
Chris Wren7c516842016-03-01 16:44:32 -05001589 // ACTION: In App > Swipe Overview button to enter split-screen
1590 // CATEGORY: GLOBAL_SYSTEM_UI
1591 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001592 ACTION_WINDOW_DOCK_SWIPE = 272;
1593
Chris Wren7c516842016-03-01 16:44:32 -05001594 // ACTION: Launch profile-specific app > Confirm credentials
1595 // CATEGORY: GLOBAL_SYSTEM_UI
1596 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001597 PROFILE_CHALLENGE = 273;
1598
Chris Wren7c516842016-03-01 16:44:32 -05001599 // OPEN: QS Battery detail panel
1600 // CATEGORY: GLOBAL_SYSTEM_UI
1601 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001602 QS_BATTERY_DETAIL = 274;
1603
Chris Wren7c516842016-03-01 16:44:32 -05001604 // OPEN: Overview > History
1605 // CATEGORY: GLOBAL_SYSTEM_UI
1606 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001607 OVERVIEW_HISTORY = 275;
1608
Chris Wren7c516842016-03-01 16:44:32 -05001609 // ACTION: Overview > Page by tapping Overview button
1610 // CATEGORY: GLOBAL_SYSTEM_UI
1611 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001612 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001613
Chris Wren7c516842016-03-01 16:44:32 -05001614 // ACTION: Overview > Select app
1615 // CATEGORY: GLOBAL_SYSTEM_UI
1616 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001617 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001618
Chris Wren7c516842016-03-01 16:44:32 -05001619 // ACTION: View emergency info
1620 // CATEGORY: GLOBAL_SYSTEM_UI
1621 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001622 ACTION_VIEW_EMERGENCY_INFO = 278;
1623
Chris Wren7c516842016-03-01 16:44:32 -05001624 // ACTION: Edit emergency info activity
1625 // CATEGORY: SETTINGS
1626 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001627 ACTION_EDIT_EMERGENCY_INFO = 279;
1628
Chris Wren7c516842016-03-01 16:44:32 -05001629 // ACTION: Edit emergency info field
1630 // CATEGORY: SETTINGS
1631 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001632 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1633
Chris Wren7c516842016-03-01 16:44:32 -05001634 // ACTION: Add emergency contact
1635 // CATEGORY: SETTINGS
1636 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001637 ACTION_ADD_EMERGENCY_CONTACT = 281;
1638
Chris Wren7c516842016-03-01 16:44:32 -05001639 // ACTION: Delete emergency contact
1640 // CATEGORY: SETTINGS
1641 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001642 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1643
Chris Wren7c516842016-03-01 16:44:32 -05001644 // ACTION: Call emergency contact
1645 // CATEGORY: SETTINGS
1646 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001647 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001648
Chris Wren7c516842016-03-01 16:44:32 -05001649 // OPEN: QS Data Saver tile shown
1650 // ACTION: QS Data Saver tile tapped
1651 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001652 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001653
Robin Lee8c1306e2016-02-01 11:37:02 +00001654 // OPEN: Settings > Security > User credentials
1655 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001656 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001657 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001658
Chris Wren7c516842016-03-01 16:44:32 -05001659 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1660 // CATEGORY: GLOBAL_SYSTEM_UI
1661 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001662 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001663
1664 // Logged when the user scrolls through overview manually
1665 OVERVIEW_SCROLL = 287;
1666
1667 // Logged when the overview times out automatically selecting an app
1668 OVERVIEW_SELECT_TIMEOUT = 288;
1669
1670 // Logged when a user dismisses a task in overview
1671 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001672
1673 // Logged when the user modifying the notification importance slider.
1674 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1675
1676 // Logged when the user saves a modification to notification importance. Negative numbers
1677 // indicate the user lowered the importance; positive means they increased it.
1678 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001679
Chris Wren7c516842016-03-01 16:44:32 -05001680 // ACTION: Long-press power button, then tap "Take bug report" option.
1681 // CATEGORY: GLOBAL_SYSTEM_UI
1682 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001683 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1684
Chris Wren7c516842016-03-01 16:44:32 -05001685 // ACTION: Long-press power button, then long-press "Take bug report" option.
1686 // CATEGORY: GLOBAL_SYSTEM_UI
1687 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001688 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1689
Chris Wren7c516842016-03-01 16:44:32 -05001690 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1691 // CATEGORY: SETTINGS
1692 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001693 // Interactive bug report initiated from Settings.
1694 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1695
Chris Wren7c516842016-03-01 16:44:32 -05001696 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1697 // CATEGORY: SETTINGS
1698 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001699 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001700 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1701
Chris Wren7c516842016-03-01 16:44:32 -05001702 // ACTION: User tapped notification action to cancel a 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_CANCEL = 296;
1706
Chris Wren7c516842016-03-01 16:44:32 -05001707 // ACTION: User tapped notification action to launch bug report details screen
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_DETAILS = 297;
1711
Chris Wren7c516842016-03-01 16:44:32 -05001712 // ACTION: User tapped notification action to take adition screenshot on bug report
1713 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001714 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001715 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1716
Chris Wren7c516842016-03-01 16:44:32 -05001717 // ACTION: User tapped notification to share bug report
1718 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001719 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001720 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1721
Chris Wren7c516842016-03-01 16:44:32 -05001722 // ACTION: User changed bug report name 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_NAME_CHANGED = 300;
1726
Chris Wren7c516842016-03-01 16:44:32 -05001727 // ACTION: User changed bug report title using the 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_TITLE_CHANGED = 301;
1731
Chris Wren7c516842016-03-01 16:44:32 -05001732 // ACTION: User changed bug report description using the 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_DESCRIPTION_CHANGED = 302;
1736
Chris Wren7c516842016-03-01 16:44:32 -05001737 // ACTION: User tapped Save in the bug report details screen.
1738 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001739 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001740 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1741
Chris Wren7c516842016-03-01 16:44:32 -05001742 // ACTION: User tapped Cancel in the bug report details screen.
1743 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001744 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001745 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001746
1747 // Tuner: Open/close calibrate dialog.
1748 TUNER_CALIBRATE_DISPLAY = 305;
1749
1750 // Tuner: Open/close color and appearance.
1751 TUNER_COLOR_AND_APPEARANCE = 306;
1752
1753 // Tuner: Apply calibrate dialog.
1754 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1755
1756 // Tuner: Open/close night mode.
1757 TUNER_NIGHT_MODE = 308;
1758
1759 // Tuner: Change night mode.
1760 ACTION_TUNER_NIGHT_MODE = 309;
1761
1762 // Tuner: Change night mode auto.
1763 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1764
1765 // Tuner: Change night mode adjust dark theme.
1766 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1767
1768 // Tuner: Change night mode adjust tint.
1769 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1770
1771 // Tuner: Change night mode adjust brightness.
1772 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1773
1774 // Tuner: Change do not disturb in volume panel.
1775 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1776
1777 // Tuner: Change do not disturb volume buttons shortcut.
1778 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001779
1780 // Logs the action the user takes when an app crashed.
1781 ACTION_APP_CRASH = 316;
1782
1783 // Logs the action the user takes when an app ANR'd.
1784 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001785
1786 // Logged when a user double taps the overview button to launch the previous task
1787 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001788
1789 // Logged when we execute an app transition. This indicates the total delay from startActivity
1790 // until the app transition is starting to animate, in milliseconds.
1791 APP_TRANSITION_DELAY_MS = 319;
1792
1793 // Logged when we execute an app transition. This indicates the reason why the transition
1794 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1795 APP_TRANSITION_REASON = 320;
1796
1797 // Logged when we execute an app transition and we drew a starting window. This indicates the
1798 // delay from startActivity until the starting window was drawn.
1799 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1800
1801 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1802 // the delay from startActivity until all windows have been drawn.
1803 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1804
1805 // Logged when we execute an app transition. This indicates the component name of the current
1806 // transition.
1807 APP_TRANSITION_COMPONENT_NAME = 323;
1808
1809 // Logged when we execute an app transition. This indicates whether the process was already
1810 // running.
1811 APP_TRANSITION_PROCESS_RUNNING = 324;
1812
1813 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1814 // the transition was executed.
1815 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001816
Chris Wren38f98812016-07-13 14:28:40 -04001817 // ACTION: app requested access to a scoped directory, user granted it.
1818 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1819 // CATEGORY: GLOBAL_SYSTEM_UI
1820 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001821 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1822
Chris Wren38f98812016-07-13 14:28:40 -04001823 // ACTION: app requested access to a scoped directory, user denied it.
1824 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1825 // CATEGORY: GLOBAL_SYSTEM_UI
1826 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001827 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1828
Chris Wren38f98812016-07-13 14:28:40 -04001829 // ACTION: app requested access to a scoped directory, user granted it.
1830 // PACKAGE: app that requested access
1831 // CATEGORY: GLOBAL_SYSTEM_UI
1832 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001833 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1834
Chris Wren38f98812016-07-13 14:28:40 -04001835 // ACTION: app requested access to a scoped directory, user denied it.
1836 // PACKAGE: app that requested access.
1837 // CATEGORY: GLOBAL_SYSTEM_UI
1838 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001839 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1840
Chris Wren38f98812016-07-13 14:28:40 -04001841 // ACTION: app requested access to a directory user has already been granted
1842 // access before.
1843 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1844 // CATEGORY: GLOBAL_SYSTEM_UI
1845 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001846 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1847
Chris Wren38f98812016-07-13 14:28:40 -04001848 // ACTION: app requested access to a directory user has already been granted
1849 // access before.
1850 // PACKAGE: app that requested access.
1851 // CATEGORY: GLOBAL_SYSTEM_UI
1852 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001853 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001854
Chris Wren38f98812016-07-13 14:28:40 -04001855 // ACTION: Logged when the user slides a notification and reveals the gear
1856 // beneath it.
1857 // CATEGORY: NOTIFICATION
1858 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001859 ACTION_REVEAL_GEAR = 332;
1860
Chris Wren38f98812016-07-13 14:28:40 -04001861 // ACTION: Logged when the user taps on the gear beneath a notification.
1862 // CATEGORY: NOTIFICATION
1863 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001864 ACTION_TOUCH_GEAR = 333;
1865
Ruben Brunke24b9a62016-02-16 21:38:24 -08001866 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001867 // CATEGORY: SETTINGS
1868 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001869 VR_MANAGE_LISTENERS = 334;
1870
Jason Monk6f5354d2016-03-08 14:18:08 -05001871 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001872 // CATEGORY: SETTINGS
1873 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001874 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001875
Jason Monk6f5354d2016-03-08 14:18:08 -05001876 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001877 // CATEGORY: SETTINGS
1878 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001879 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001880
Jason Monk6f5354d2016-03-08 14:18:08 -05001881 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001882 // CATEGORY: SETTINGS
1883 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001884 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001885
Jason Monk6f5354d2016-03-08 14:18:08 -05001886 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001887 // CATEGORY: SETTINGS
1888 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001889 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001890
Jason Monk6f5354d2016-03-08 14:18:08 -05001891 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001892 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001894
Jason Monk6f5354d2016-03-08 14:18:08 -05001895 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001896 // CATEGORY: SETTINGS
1897 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001898 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001899
Jason Monk6f5354d2016-03-08 14:18:08 -05001900 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001901 // CATEGORY: SETTINGS
1902 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001903 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001904
Jason Monk6f5354d2016-03-08 14:18:08 -05001905 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001906 // CATEGORY: SETTINGS
1907 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001908 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001909
Jason Monk6f5354d2016-03-08 14:18:08 -05001910 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001911 // CATEGORY: SETTINGS
1912 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001913 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001914
Jason Monk6f5354d2016-03-08 14:18:08 -05001915 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001916 // CATEGORY: SETTINGS
1917 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001918 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001919
Jason Monk6f5354d2016-03-08 14:18:08 -05001920 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001921 // CATEGORY: SETTINGS
1922 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001923 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001924
Jason Monk6f5354d2016-03-08 14:18:08 -05001925 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001926 // CATEGORY: SETTINGS
1927 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001928 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001929
Jason Monk6f5354d2016-03-08 14:18:08 -05001930 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001931 // CATEGORY: SETTINGS
1932 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001933 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001934
Jason Monk6f5354d2016-03-08 14:18:08 -05001935 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001936 // CATEGORY: SETTINGS
1937 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001938 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001939
Jason Monk6f5354d2016-03-08 14:18:08 -05001940 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001941 // CATEGORY: SETTINGS
1942 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001943 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1944
1945 // Used for generic logging of Settings Preference Persistence, should not be used
1946 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001947 // CATEGORY: SETTINGS
1948 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001949 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001950
Jason Monk6f5354d2016-03-08 14:18:08 -05001951 // Settings -> Apps -> Gear -> Special access
1952 SPECIAL_ACCESS = 351;
1953
Muyuan Lia2129992016-03-03 18:30:39 -08001954 // Logs that the user docks window via shortcut key.
1955 WINDOW_DOCK_SHORTCUTS = 352;
1956
Felipe Lemeadccb992016-03-09 17:40:49 -08001957 // User already denied access to the request folder; action takes an integer
1958 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001959 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001960 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1961
1962 // User already denied access to the request folder; action pass package name
1963 // of calling package.
1964 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1965
1966 // User denied access to the request folder and checked 'Do not ask again';
1967 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001968 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001969 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1970
1971 // User denied access to the request folder and checked 'Do not ask again';
1972 // action pass package name of calling package.
1973 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1974
Winson3b6ba1a2016-03-22 15:37:54 -07001975 // Logged when a user dismisses all task in overview
1976 OVERVIEW_DISMISS_ALL = 357;
1977
Jason Monk96defbe2016-03-29 16:51:03 -04001978 // Quick Settings -> Edit
1979 QS_EDIT = 358;
1980
1981 // Quick Settings -> Edit -> Overflow -> Reset
1982 ACTION_QS_EDIT_RESET = 359;
1983
1984 // QS -> Edit - Drag a tile out of the active tiles.
1985 // The _SPEC contains either the spec of the tile or
1986 // the package of the 3rd party app in the PKG field.
1987 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1988 ACTION_QS_EDIT_REMOVE = 361;
1989
1990 // QS -> Edit - Drag a tile into the active tiles.
1991 // The _SPEC contains either the spec of the tile or
1992 // the package of the 3rd party app in the PKG field.
1993 ACTION_QS_EDIT_ADD_SPEC = 362;
1994 ACTION_QS_EDIT_ADD = 363;
1995
1996 // QS -> Edit - Drag a tile within the active tiles.
1997 // The _SPEC contains either the spec of the tile or
1998 // the package of the 3rd party app in the PKG field.
1999 ACTION_QS_EDIT_MOVE_SPEC = 364;
2000 ACTION_QS_EDIT_MOVE = 365;
2001
2002 // Long-press on a QS tile. Tile spec in package field.
2003 ACTION_QS_LONG_PRESS = 366;
2004
Anna Galuszadad131f2016-03-22 13:49:02 -07002005 // OPEN: SUW Welcome Screen -> Vision Settings
2006 // CATEGORY: SETTINGS
2007 // OS: N
2008 SUW_ACCESSIBILITY = 367;
2009
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002010 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2011 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2012 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002013 // ACTION: New magnification gesture configuration is chosen
2014 // SUBTYPE: 0 is off, 1 is on
2015 // CATEGORY: SETTINGS
2016 // OS: N
2017 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2018
2019 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2020 // ACTION: New font size is chosen
2021 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2022 // CATEGORY: SETTINGS
2023 // OS: N
2024 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2025
2026 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2027 // ACTION: New display size is chosen
2028 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2029 // CATEGORY: SETTINGS
2030 // OS: N
2031 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2032
2033 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2034 // ACTION: New screen reader configuration is chosen
2035 // SUBTYPE: 0 is off, 1 is on
2036 // CATEGORY: SETTINGS
2037 // OS: N
2038 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2039
Jason Monkc3620392016-03-30 15:46:03 -04002040 // ------- Begin N Settings conditionals -----
2041 // Conditionals are the green bars at the top of the settings dashboard
2042 // All conditionals will have visible/hide events onResume/onPause
2043 // but they will also be used as extra ints in the
2044 // dismiss/expand/collapse/click/button events
2045
2046 // swipe away conditional
2047 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2048
2049 // click on collapsed conditional or clicks expand button
2050 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2051
2052 // click collapse button on expanded conditional
2053 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2054
2055 // click main area of expanded conditional
2056 ACTION_SETTINGS_CONDITION_CLICK = 375;
2057
2058 // click a direct button on expanded conditional
2059 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2060
2061 // Airplane mode on
2062 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2063 // AKA Data saver on
2064 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2065 // Battery saver on
2066 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2067 // Cellular data off
2068 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2069 // Do not disturb on
2070 SETTINGS_CONDITION_DND = 381;
2071 // Hotspot on
2072 SETTINGS_CONDITION_HOTSPOT = 382;
2073 // Work profile off
2074 SETTINGS_CONDITION_WORK_MODE = 383;
2075
Jason Monk1b5d87b2016-03-30 16:03:15 -04002076 // ------- Begin N Settings suggestions -----
2077 // Since suggestions come from system apps, suggestions will
2078 // have generic constants and the package providing the suggestion
2079 // will be put in the package field. For suggestions in the Settings
2080 // package, the class name will be filled in instead (since settings
2081 // provides several suggetions).
2082
2083 // Settings shown/hidden on main settings dashboard.
2084 // These are actually visibility events, but visible/hidden doesn't
2085 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002086 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2087 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002088
2089 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002090 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002091
2092 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002093 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002094
Jason Monk397df682016-03-28 15:48:34 -04002095 // Settings > Apps > Gear > Special Access > Premium SMS access
2096 PREMIUM_SMS_ACCESS = 388;
2097
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002098 // Logged when the user resizes the docked stack. Arguments:
2099 // 0: Split 50:50
2100 // 1: Docked smaller
2101 // 2: Docked larger
2102 ACTION_WINDOW_DOCK_RESIZE = 389;
2103
2104 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2105 // 0: Docked gets maximized
2106 // 1: Fullscreen gets maximized
2107 ACTION_WINDOW_UNDOCK_MAX = 390;
2108
2109 // User tried to dock an unresizable app.
2110 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2111
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002112 // System UI Tuner > Other > Power notification controls
2113 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2114
2115 // System UI Tuner > Other > Power notification controls > Toggle on/off
2116 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2117
Chris Wren38f98812016-07-13 14:28:40 -04002118 // Action: user enable / disabled data saver using Settings
2119 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2120 // VALUE: 1 for enabled, 0 for disabled
2121 // CATEGORY: SETTINGS
2122 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002123 ACTION_DATA_SAVER_MODE = 394;
2124
Chris Wren38f98812016-07-13 14:28:40 -04002125 // User whitelisted an app for Data Saver mode; action pass package name of app
2126 // Action: user enable / disabled data saver using Settings
2127 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2128 // or
2129 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2130 // VALUE: package name of APP
2131 // CATEGORY: SETTINGS
2132 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002133 ACTION_DATA_SAVER_WHITELIST = 395;
2134
Chris Wren38f98812016-07-13 14:28:40 -04002135 // User blacklisted an app for Data Saver mode; action pass package name of app
2136 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2137 // VALUE: package name of APP
2138 // CATEGORY: SETTINGS
2139 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002140 ACTION_DATA_SAVER_BLACKLIST = 396;
2141
Adrian Roosceeb04c2016-04-25 14:00:54 -07002142 // User opened a remote input view associated with a notification. Passes package name of app
2143 // that posted the notification. Note that this can also happen transiently during notification
2144 // reinflation.
2145 ACTION_REMOTE_INPUT_OPEN = 397;
2146
2147 // User attempt to send data through a remote input view associated with a notification.
2148 // Passes package name of app that posted the notification. May succeed or fail.
2149 ACTION_REMOTE_INPUT_SEND = 398;
2150
2151 // Failed attempt to send data through a remote input view associated with a
2152 // notification. Passes package name of app that posted the notification.
2153 ACTION_REMOTE_INPUT_FAIL = 399;
2154
2155 // User closed a remote input view associated with a notification. Passes package name of app
2156 // that posted the notification. Note that this can also happen transiently during notification
2157 // reinflation.
2158 ACTION_REMOTE_INPUT_CLOSE = 400;
2159
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002160 // OPEN: Settings > Accounts > Work profile settings
2161 // CATEGORY: SETTINGS
2162 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2163
Jason Monk25118d12016-05-10 13:25:50 -04002164 // Settings -> Dev options -> Convert to file encryption
2165 CONVERT_FBE = 402;
2166
2167 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2168 CONVERT_FBE_CONFIRM = 403;
2169
2170 // Settings -> Dev options -> Running services
2171 RUNNING_SERVICES = 404;
2172
Jason Monka1f697f2016-05-06 15:09:44 -04002173 // The dialog shown by 3P intent to change current webview implementation.
2174 WEBVIEW_IMPLEMENTATION = 405;
2175
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002176 // Settings launched from expanded quick settings.
2177 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2178
Chris Wren698b1702016-05-23 11:16:32 -04002179 // Notification expansion state toggled by the expand affordance.
2180 ACTION_NOTIFICATION_EXPANDER = 407;
2181
2182 // Notification group expansion state toggled by the expand affordance.
2183 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2184
Chris Wren7ee84182016-05-27 13:34:02 -04002185
Chris Wren6abeeb92016-05-26 14:44:38 -04002186 // Notification expansion state toggled by the expand gesture.
2187 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2188
2189 // Notification group expansion state toggled by the expand gesture.
2190 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2191
Bhavik Singh3451da42016-06-01 18:25:59 -07002192 // User performs gesture that activates the ambient display
2193 // 1: Gesture performed is Nudge
2194 // 2: Gesture performed is Pickup
2195 // 4: Gesture performed is Double Tap
2196 ACTION_AMBIENT_GESTURE = 411;
2197
Jason Monk9fa5f822016-05-11 10:26:31 -04002198 // ---- End N Constants, all N constants go above this line ----
2199
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002200 // ------- Begin N App Disambig Shade -----
2201 // Application disambig shade opened or closed with a featured app.
2202 // These are actually visibility events, but visible/hidden doesn't
2203 // take a package, so these are being logged as actions.
2204 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002205 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2206 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002207
2208 // Application disambig shade opened or closed without a featured app.
2209 // These are actually visibility events, but visible/hidden doesn't
2210 // take a package, so these are being logged as actions.
2211 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002212 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2213 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002214
2215 // User opens in an app by pressing “Always” in the application disambig shade.
2216 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002217 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002218
2219 // User opens in an app by pressing “Just Once” in the application disambig shade.
2220 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002221 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002222
2223 // User opens in an app by tapping on its name in the application disambig shade.
2224 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002225 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002226
Daniel Nishi010aa492016-05-11 09:42:24 -07002227 // OPEN: Settings > Internal storage > Storage manager
2228 // CATEGORY: SETTINGS
2229 STORAGE_MANAGER_SETTINGS = 458;
2230
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002231 // OPEN: Settings -> Gestures
2232 // CATEGORY: SETTINGS
2233 SETTINGS_GESTURES = 459;
2234
Daniel Nishi597e67f2016-05-18 13:56:13 -07002235 // ------ Begin Deletion Helper ------
2236 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2237 // SUBTYPE: false is off, true is on
2238 // CATEGORY: SETTINGS
2239 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002240
Daniel Nishi597e67f2016-05-18 13:56:13 -07002241 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2242 // SUBTYPE: false is off, true is on
2243 // CATEGORY: SETTINGS
2244 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2245
2246 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2247 // CATEGORY: SETTINGS
2248 // PACKAGE: Unchecked app
2249 ACTION_DELETION_SELECTION_APP_ON = 462;
2250
2251 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2252 // CATEGORY: SETTINGS
2253 // PACKAGE: Checked app
2254 ACTION_DELETION_SELECTION_APP_OFF = 463;
2255
2256 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2257 // SUBTYPE: false is expanded, true is collapsed
2258 // CATEGORY: SETTINGS
2259 ACTION_DELETION_APPS_COLLAPSED = 464;
2260
2261 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2262 // SUBTYPE: false is off, true is on
2263 // CATEGORY: SETTINGS
2264 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2265
2266 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2267 // SUBTYPE: false is expanded, true is collapsed
2268 // CATEGORY: SETTINGS
2269 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2270
2271 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2272 // CATEGORY: SETTINGS
2273 ACTION_DELETION_HELPER_CLEAR = 467;
2274
2275 // ACTION: Settings > Storage > Free Up Space > Cancel
2276 // CATEGORY: SETTINGS
2277 ACTION_DELETION_HELPER_CANCEL = 468;
2278
2279 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2280 // CATEGORY: SETTINGS
2281 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2282
2283 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2284 // CATEGORY: SETTINGS
2285 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2286
2287 // Deletion helper encountered an error during package deletion.
2288 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2289
2290 // Deletion helper encountered an error during downloads folder deletion.
2291 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2292
2293 // Deletion helper encountered an error during photo and video deletion.
2294 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2295
Fan Zhang5e956e82016-05-06 10:51:47 -07002296 // OPEN: Settings (root page if there are multiple tabs)
2297 // CATEGORY: SETTINGS
2298 DASHBOARD_CONTAINER = 474;
2299
2300 // OPEN: Settings -> SUPPORT TAB
2301 // CATEGORY: SETTINGS
2302 SUPPORT_FRAGMENT = 475;
2303
2304 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002305 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002306 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002307
2308 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002309 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002310 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2311
Fan Zhanga1985502016-06-16 16:48:38 -07002312 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002313 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002314 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2315
2316 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002317 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002318 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2319
2320 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002321 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002322 ACTION_SUPPORT_SIGN_IN = 480;
2323
2324 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002325 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002326 ACTION_SUPPORT_PHONE = 481;
2327
2328 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002329 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002330 ACTION_SUPPORT_CHAT = 482;
2331
2332 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002333 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002334 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2335
2336 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002337 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002338 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2339
Fan Zhang80807212016-06-30 12:26:55 -07002340 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002341 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002342 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2343
2344 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002345 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002346 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2347
2348 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002349 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002350 ACTION_SUPPORT_DIAL_TOLLED = 487;
2351
Justin Klaassen19494272016-07-18 21:38:24 -07002352 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002353 // CATEGORY: SETTINGS
2354 NIGHT_DISPLAY_SETTINGS = 488;
2355
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002356 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002357 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002358 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2359
Jason Monk484fd362016-07-13 15:24:32 -04002360 // Settings launched from collapsed quick settings.
2361 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2362
Justin Klaassen19494272016-07-18 21:38:24 -07002363 // OPEN: QS Night Light tile shown
2364 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002365 // SUBTYPE: 0 is off, 1 is on
2366 // CATEGORY: QUICK_SETTINGS
2367 QS_NIGHT_DISPLAY = 491;
2368
Justin Klaassen19494272016-07-18 21:38:24 -07002369 // Night Light on
2370 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2371
Doris Ling3c00afb2016-07-19 17:04:21 -07002372 // System navigation key up.
2373 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2374
2375 // System navigation key down.
2376 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2377
Doris Ling6dd3e462016-08-04 13:17:27 -07002378 // OPEN: Settings > Display -> Ambient Display
2379 // CATEGORY: SETTINGS
2380 ACTION_AMBIENT_DISPLAY = 495;
2381
Adrian Roos159ef7b2016-02-25 11:58:32 -08002382 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2383
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002384 // ACTION: The lockscreen gets shown because the SIM card was removed
2385 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2386 // CATEGORY: GLOBAL_SYSTEM_UI
2387 // OS: N-MR2
2388 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2389
2390 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2391
Clara Bayarric17a5982016-04-15 12:26:47 +01002392 // ------- Begin N Keyboard Shortcuts Helper -----
2393 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002394 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002395
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002396 // OPEN: Print Preview screen
2397 // Package: Package of app where print job is from
2398 PRINT_PREVIEW = 501;
2399
2400 // OPEN: User expands full print job options shade in print preview.
2401 PRINT_JOB_OPTIONS = 502;
2402
2403 // OPEN: “All Printers” screen for selecting printer
2404 // Subtype: # of printers listed
2405 PRINT_ALL_PRINTERS = 503;
2406
2407 // OPEN: “Add Printers” screen for adding printers
2408 // Subtype: # of enabled print service listed
2409 PRINT_ADD_PRINTERS = 504;
2410
2411 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2412 // Package: Package of print service.
2413 ACTION_PRINT = 505;
2414
2415 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2416 // Count all ACTION_PRINTER_SELECT_ALL actions.
2417 // Package: Package of print service tied to printer
2418 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2419
2420 // ACTION: User selects a printer from the “All printers” screen.
2421 // Package: Package of print service tied to printer
2422 ACTION_PRINTER_SELECT_ALL = 507;
2423
2424 // ACTION: User changes an option for the print job from print preview.
2425 // Subtype: 1: Copies
2426 // 2: Color mode
2427 // 3: Duplex mode
2428 // 4: Media (==Paper) size
2429 // 5: Orientation
2430 // 6: Page range
2431 // Package: Package of print service tied to printer
2432 ACTION_PRINT_JOB_OPTIONS = 508;
2433
2434 // ACTION: User searches for printer from All Printers
2435 ACTION_PRINTER_SEARCH = 509;
2436
2437 // ACTION: User selects “Add print service” button from All Printers
2438 ACTION_PRINT_SERVICE_ADD = 510;
2439
2440 // ACTION: User Enables/Disables Print Service via any means.
2441 // Subtype: 0: Enabled
2442 // 1: Disabled
2443 ACTION_PRINT_SERVICE_TOGGLE = 511;
2444
2445 // ACTION: User installs print recommended print service
2446 // Package: Package of print service
2447 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2448
Doris Ling88a6b162016-08-08 16:17:43 -07002449 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2450 // SUBTYPE: sub settings classname
2451 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2452
Fan Zhang92c60382016-08-08 14:03:53 -07002453 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2454 USER_DICTIONARY_SETTINGS = 514;
2455
2456 // OPEN: Settings > Date & time > Select time zone
2457 ZONE_PICKER = 515;
2458
2459 // OPEN: Settings > Security > Device administrators
2460 DEVICE_ADMIN_SETTINGS = 516;
2461
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002462 // ACTION: Managed provisioning was launched to set this package as DPC app.
2463 // PACKAGE: DPC's package name.
2464 PROVISIONING_DPC_PACKAGE_NAME = 517;
2465
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002466 // ACTION: Managed provisioning triggered DPC installation.
2467 // PACKAGE: Package name of package which installed DPC.
2468 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2469
2470 // ACTION: Logged when provisioning activity finishes.
2471 // TIME: Indicates time taken by provisioning activity to finish in MS.
2472 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2473
2474 // ACTION: Logged when preprovisioning activity finishes.
2475 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2476 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2477
2478 // ACTION: Logged when encrypt device activity finishes.
2479 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2480 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2481
2482 // ACTION: Logged when web activity finishes.
2483 // TIME: Indicates total time taken by web activity to finish in MS.
2484 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2485
2486 // ACTION: Logged when trampoline activity finishes.
2487 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2488 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2489
2490 // ACTION: Logged when encryption activity finishes.
2491 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2492 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2493
2494 // ACTION: Logged when finalization activity finishes.
2495 // TIME: Indicates time taken by finalization activity to finish in MS.
2496 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002497
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002498 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002499 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002500
Fan Zhang95094182016-08-24 18:14:16 -07002501 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002502 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002503
2504 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002505 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002506
2507 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002508 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002509
2510 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002511 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002512
2513 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002514 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002515
Fan Zhangc1352ae2016-09-16 12:46:11 -07002516 // OPEN: Settings > Security > Use one lock dialog
2517 DIALOG_UNIFICATION_CONFIRMATION = 532;
2518
2519 // OPEN: Settings > Security > User Credential
2520 DIALOG_USER_CREDENTIAL = 533;
2521
2522 // OPEN: Settings > Accounts > Remove account
2523 DIALOG_REMOVE_USER = 534;
2524
2525 // OPEN: Settings > Accounts > Confirm auto sync dialog
2526 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2527
2528 // OPEN: Settings > Apps > Dialog for running service details
2529 DIALOG_RUNNIGN_SERVICE = 536;
2530
2531 // OPEN: Settings > Dialog for hiding home settings
2532 DIALOG_NO_HOME = 537;
2533
2534 // OPEN: Settings > Bluetooth > Rename this device
2535 DIALOG_BLUETOOTH_RENAME = 538;
2536
2537 // OPEN: Settings > Bluetooth > Paired device profile
2538 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2539
2540 // OPEN: Settings > Battery optimization > details for app
2541 DIALOG_HIGH_POWER_DETAILS = 540;
2542
2543 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2544 DIALOG_KEYBOARD_LAYOUT = 541;
2545
2546 // OPEN: Settings > Wifi > WPS Setup dialog
2547 DIALOG_WPS_SETUP = 542;
2548
2549 // OPEN: Settings > WIFI Scan permission dialog
2550 DIALOG_WIFI_SCAN_MODE = 543;
2551
2552 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2553 DIALOG_WIFI_SKIP = 544;
2554
2555 // OPEN: Settings > Wireless > VPN > Config dialog
2556 DIALOG_LEGACY_VPN_CONFIG = 545;
2557
2558 // OPEN: Settings > Wireless > VPN > Config dialog for app
2559 DIALOG_VPN_APP_CONFIG = 546;
2560
2561 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2562 DIALOG_VPN_CANNOT_CONNECT = 547;
2563
2564 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2565 DIALOG_VPN_REPLACE_EXISTING = 548;
2566
2567 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2568 DIALOG_BILLING_CYCLE = 549;
2569
2570 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2571 DIALOG_BILLING_BYTE_LIMIT = 550;
2572
2573 // OPEN: Settings > Billing cycle > turn on data limit dialog
2574 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2575
2576 // OPEN: Settings > Service > Turn off notification access dialog
2577 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2578
2579 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2580 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2581
2582 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2583 DIALOG_ZEN_ACCESS_GRANT = 554;
2584
2585 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2586 DIALOG_ZEN_ACCESS_REVOKE = 555;
2587
2588 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2589 DIALOG_ZEN_TIMEPICKER = 556;
2590
2591 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2592 DIALOG_SERVICE_ACCESS_WARNING = 557;
2593
2594 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2595 DIALOG_APP_INFO_ACTION = 558;
2596
2597 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2598 DIALOG_VOLUME_FORGET = 559;
2599
2600 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2601 DIALOG_VOLUME_SLOW_WARNING = 560;
2602
2603 // OPEN: Settings > Storage > Dialog for initializing a volume
2604 DIALOG_VOLUME_INIT = 561;
2605
2606 // OPEN: Settings > Storage > Dialog for unmounting a volume
2607 DIALOG_VOLUME_UNMOUNT = 562;
2608
2609 // OPEN: Settings > Storage > Dialog for renaming a volume
2610 DIALOG_VOLUME_RENAME = 563;
2611
2612 // OPEN: Settings > Storage > Dialog for clear cache
2613 DIALOG_STORAGE_CLEAR_CACHE = 564;
2614
2615 // OPEN: Settings > Storage > Dialog for system info
2616 DIALOG_STORAGE_SYSTEM_INFO = 565;
2617
2618 // OPEN: Settings > Storage > Dialog for other info
2619 DIALOG_STORAGE_OTHER_INFO = 566;
2620
2621 // OPEN: Settings > Storage > Dialog for user info
2622 DIALOG_STORAGE_USER_INFO = 567;
2623
2624 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2625 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2626
2627 // OPEN: Settings > Add fingerprint > Error dialog
2628 DIALOG_FINGERPINT_ERROR = 569;
2629
2630 // OPEN: Settings > Fingerprint > Rename or delete dialog
2631 DIALOG_FINGERPINT_EDIT = 570;
2632
2633 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2634 DIALOG_FINGERPINT_DELETE_LAST = 571;
2635
2636 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2637 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2638
2639 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2640 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2641
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002642 // OPEN: Settings > Proxy Selector error dialog
2643 DIALOG_PROXY_SELECTOR_ERROR = 574;
2644
2645 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2646 DIALOG_WIFI_P2P_DISCONNECT = 575;
2647
2648 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2649 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2650
2651 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2652 DIALOG_WIFI_P2P_RENAME = 577;
2653
2654 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2655 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2656
2657 // OPEN: Settings > APN > Restore default dialog
2658 DIALOG_APN_RESTORE_DEFAULT = 579;
2659
2660 // OPEN: Settings > Dream > When to dream dialog
2661 DIALOG_DREAM_START_DELAY = 580;
2662
2663 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2664 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2665
2666 // OPEN: Settings > Tether > AP setting dialog
2667 DIALOG_AP_SETTINGS = 582;
2668
2669 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2670 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2671
2672 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2673 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2674
2675 // OPEN: Settings > Account > Remove account dialog
2676 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2677
2678 // OPEN: Settings > Account > Remove account failed dialog
2679 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2680
2681 // OPEN: Settings > Account > Cannot do onetime sync dialog
2682 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2683
2684 // OPEN: Settings > Display > Night light > Set start time dialog
2685 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2686
2687 // OPEN: Settings > Display > Night light > Set end time dialog
2688 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2689
2690 // OPEN: Settings > User > Edit info dialog
2691 DIALOG_USER_EDIT = 590;
2692
2693 // OPEN: Settings > User > Confirm remove dialog
2694 DIALOG_USER_REMOVE = 591;
2695
2696 // OPEN: Settings > User > Enable calling dialog
2697 DIALOG_USER_ENABLE_CALLING = 592;
2698
2699 // OPEN: Settings > User > Enable calling and sms dialog
2700 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2701
2702 // OPEN: Settings > User > Cannot manage device message dialog
2703 DIALOG_USER_CANNOT_MANAGE = 594;
2704
2705 // OPEN: Settings > User > Add user dialog
2706 DIALOG_USER_ADD = 595;
2707
2708 // OPEN: Settings > User > Setup user dialog
2709 DIALOG_USER_SETUP = 596;
2710
2711 // OPEN: Settings > User > Setup profile dialog
2712 DIALOG_USER_SETUP_PROFILE = 597;
2713
2714 // OPEN: Settings > User > Choose user type dialog
2715 DIALOG_USER_CHOOSE_TYPE = 598;
2716
2717 // OPEN: Settings > User > Need lockscreen dialog
2718 DIALOG_USER_NEED_LOCKSCREEN = 599;
2719
2720 // OPEN: Settings > User > Confirm exit guest mode dialog
2721 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2722
2723 // OPEN: Settings > User > Edit user profile dialog
2724 DIALOG_USER_EDIT_PROFILE = 601;
2725
2726 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2727 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2728
2729 // OPEN: Settings > Wifi > Edit AP dialog
2730 DIALOG_WIFI_AP_EDIT = 603;
2731
2732 // OPEN: Settings > Wifi > PBC Config dialog
2733 DIALOG_WIFI_PBC = 604;
2734
2735 // OPEN: Settings > Wifi > Display pin dialog
2736 DIALOG_WIFI_PIN = 605;
2737
2738 // OPEN: Settings > Wifi > Write config to NFC dialog
2739 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002740 // OPEN: Settings > Date > Date picker dialog
2741 DIALOG_DATE_PICKER = 607;
2742
2743 // OPEN: Settings > Date > Time picker dialog
2744 DIALOG_TIME_PICKER = 608;
2745
2746 // OPEN: Settings > Wireless > Manage wireless plan dialog
2747 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002748
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002749 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002750 PROVISIONING_NETWORK_TYPE = 610;
2751
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002752 // ACTION: Logs action which triggered provisioning.
2753 PROVISIONING_ACTION = 611;
2754
Mahaver Chopraab282072016-10-06 19:19:23 +01002755 // ACTION: Logs extra passed by the dpc while provisioning.
2756 PROVISIONING_EXTRA = 612;
2757
Salvador Martinez64867c12016-10-14 15:25:09 -07002758 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2759 BLUETOOTH_DIALOG_FRAGMENT = 613;
2760
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002761 // ACTION: Logs provisioning started by zero touch.
2762 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2763
2764 // ACTION: Logs provisioning started by NFC bump.
2765 PROVISIONING_ENTRY_POINT_NFC = 615;
2766
2767 // ACTION: Logs provisioning started using QR code.
2768 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2769
2770 // ACTION: Logs provisioning started using adb.
2771 PROVISIONING_ENTRY_POINT_ADB = 617;
2772
2773 // ACTION: Logs provisioning started by trusted source.
2774 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2775
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002776 // ACTION: Logged when copy account task finishes.
2777 // TIME: Indicates time taken by copy account task to finish in MS.
2778 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2779
2780 // ACTION: Logged when create profile task finishes.
2781 // TIME: Indicates time taken by create profile task to finish in MS.
2782 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2783
2784 // ACTION: Logged when start profile task finishes.
2785 // TIME: Indicates time taken by start profile task to finish in MS.
2786 PROVISIONING_START_PROFILE_TASK_MS = 621;
2787
2788 // ACTION: Logged when download package task finishes.
2789 // TIME: Indicates time taken by download package task to finish in MS.
2790 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2791
2792 // ACTION: Logged when install package task finishes.
2793 // TIME: Indicates time taken by install package task to finish in MS.
2794 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2795
2796 // ACTION: User cancelled provisioning.
2797 PROVISIONING_CANCELLED = 624;
2798
2799 // ACTION: Logged when provisioning throws an error.
2800 PROVISIONING_ERROR = 625;
2801
2802 // ACTION: Logs the status of copying user account during provisioning.
2803 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2804
2805 // ACTION: Logs the end to end time taken by all provisioning tasks.
2806 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2807
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002808 // OPEN: Settings > Privacy
2809 // CATEGORY: SETTINGS
2810 // OS: O
2811 ENTERPRISE_PRIVACY_SETTINGS = 628;
2812
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002813 // ACTION: Longpress on a TextView.
2814 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2815 // CATEGORY: TEXT_CONTROLS
2816 // OS: O
2817 TEXT_LONGPRESS = 629;
2818
Chris Wren3824c392017-11-27 12:54:14 -05002819 // ACTION: An app requested an unknown permission
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_REQUEST_UNKNOWN = 630;
2823
Chris Wren3824c392017-11-27 12:54:14 -05002824 // ACTION: An app was granted an unknown permission
2825 // PACKAGE: The package name of the app that was granted the permission
2826 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002827 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2828
Chris Wren3824c392017-11-27 12:54:14 -05002829 // ACTION: An app requested an unknown permission and the request was denied
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_DENIED_UNKNOWN = 632;
2833
Chris Wren3824c392017-11-27 12:54:14 -05002834 // ACTION: An unknown permission was revoked for an app
2835 // PACKAGE: The package name of the app the permission was revoked for
2836 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002837 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2838
Chris Wren3824c392017-11-27 12:54:14 -05002839 // ACTION: An app requested the permission READ_CALENDAR
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_REQUEST_READ_CALENDAR = 634;
2843
Chris Wren3824c392017-11-27 12:54:14 -05002844 // ACTION: An app was granted the permission READ_CALENDAR
2845 // PACKAGE: The package name of the app that was granted the permission
2846 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002847 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2848
Chris Wren3824c392017-11-27 12:54:14 -05002849 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
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_DENIED_READ_CALENDAR = 636;
2853
Chris Wren3824c392017-11-27 12:54:14 -05002854 // ACTION: The permission READ_CALENDAR was revoked for an app
2855 // PACKAGE: The package name of the app the permission was revoked for
2856 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002857 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2858
Chris Wren3824c392017-11-27 12:54:14 -05002859 // ACTION: An app requested the permission WRITE_CALENDAR
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_REQUEST_WRITE_CALENDAR = 638;
2863
Chris Wren3824c392017-11-27 12:54:14 -05002864 // ACTION: An app was granted the permission WRITE_CALENDAR
2865 // PACKAGE: The package name of the app that was granted the permission
2866 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002867 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2868
Chris Wren3824c392017-11-27 12:54:14 -05002869 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
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_DENIED_WRITE_CALENDAR = 640;
2873
Chris Wren3824c392017-11-27 12:54:14 -05002874 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2875 // PACKAGE: The package name of the app the permission was revoked for
2876 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002877 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2878
Chris Wren3824c392017-11-27 12:54:14 -05002879 // ACTION: An app requested the permission CAMERA
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_REQUEST_CAMERA = 642;
2883
Chris Wren3824c392017-11-27 12:54:14 -05002884 // ACTION: An app was granted the permission CAMERA
2885 // PACKAGE: The package name of the app that was granted the permission
2886 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002887 ACTION_PERMISSION_GRANT_CAMERA = 643;
2888
Chris Wren3824c392017-11-27 12:54:14 -05002889 // ACTION: An app requested the permission CAMERA and the request was denied
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_DENIED_CAMERA = 644;
2893
Chris Wren3824c392017-11-27 12:54:14 -05002894 // ACTION: The permission CAMERA was revoked for an app
2895 // PACKAGE: The package name of the app the permission was revoked for
2896 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002897 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2898
Chris Wren3824c392017-11-27 12:54:14 -05002899 // ACTION: An app requested the permission READ_CONTACTS
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_REQUEST_READ_CONTACTS = 646;
2903
Chris Wren3824c392017-11-27 12:54:14 -05002904 // ACTION: An app was granted the permission READ_CONTACTS
2905 // PACKAGE: The package name of the app that was granted the permission
2906 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002907 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2908
Chris Wren3824c392017-11-27 12:54:14 -05002909 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
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_DENIED_READ_CONTACTS = 648;
2913
Chris Wren3824c392017-11-27 12:54:14 -05002914 // ACTION: The permission READ_CONTACTS was revoked for an app
2915 // PACKAGE: The package name of the app the permission was revoked for
2916 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002917 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2918
Chris Wren3824c392017-11-27 12:54:14 -05002919 // ACTION: An app requested the permission WRITE_CONTACTS
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_REQUEST_WRITE_CONTACTS = 650;
2923
Chris Wren3824c392017-11-27 12:54:14 -05002924 // ACTION: An app was granted the permission WRITE_CONTACTS
2925 // PACKAGE: The package name of the app that was granted the permission
2926 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002927 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2928
Chris Wren3824c392017-11-27 12:54:14 -05002929 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
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_DENIED_WRITE_CONTACTS = 652;
2933
Chris Wren3824c392017-11-27 12:54:14 -05002934 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2935 // PACKAGE: The package name of the app the permission was revoked for
2936 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002937 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2938
Chris Wren3824c392017-11-27 12:54:14 -05002939 // ACTION: An app requested the permission GET_ACCOUNTS
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_REQUEST_GET_ACCOUNTS = 654;
2943
Chris Wren3824c392017-11-27 12:54:14 -05002944 // ACTION: An app was granted the permission GET_ACCOUNTS
2945 // PACKAGE: The package name of the app that was granted the permission
2946 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002947 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2948
Chris Wren3824c392017-11-27 12:54:14 -05002949 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
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_DENIED_GET_ACCOUNTS = 656;
2953
Chris Wren3824c392017-11-27 12:54:14 -05002954 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2955 // PACKAGE: The package name of the app the permission was revoked for
2956 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002957 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2958
Chris Wren3824c392017-11-27 12:54:14 -05002959 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
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_REQUEST_ACCESS_FINE_LOCATION = 658;
2963
Chris Wren3824c392017-11-27 12:54:14 -05002964 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2965 // PACKAGE: The package name of the app that was granted the permission
2966 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002967 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2968
Chris Wren3824c392017-11-27 12:54:14 -05002969 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
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_DENIED_ACCESS_FINE_LOCATION = 660;
2973
Chris Wren3824c392017-11-27 12:54:14 -05002974 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2975 // PACKAGE: The package name of the app the permission was revoked for
2976 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002977 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2978
Chris Wren3824c392017-11-27 12:54:14 -05002979 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
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_REQUEST_ACCESS_COARSE_LOCATION = 662;
2983
Chris Wren3824c392017-11-27 12:54:14 -05002984 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2985 // PACKAGE: The package name of the app that was granted the permission
2986 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002987 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2988
Chris Wren3824c392017-11-27 12:54:14 -05002989 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
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_DENIED_ACCESS_COARSE_LOCATION = 664;
2993
Chris Wren3824c392017-11-27 12:54:14 -05002994 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2995 // PACKAGE: The package name of the app the permission was revoked for
2996 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002997 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2998
Chris Wren3824c392017-11-27 12:54:14 -05002999 // ACTION: An app requested the permission RECORD_AUDIO
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_REQUEST_RECORD_AUDIO = 666;
3003
Chris Wren3824c392017-11-27 12:54:14 -05003004 // ACTION: An app was granted the permission RECORD_AUDIO
3005 // PACKAGE: The package name of the app that was granted the permission
3006 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003007 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3008
Chris Wren3824c392017-11-27 12:54:14 -05003009 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
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_DENIED_RECORD_AUDIO = 668;
3013
Chris Wren3824c392017-11-27 12:54:14 -05003014 // ACTION: The permission RECORD_AUDIO was revoked for an app
3015 // PACKAGE: The package name of the app the permission was revoked for
3016 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003017 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3018
Chris Wren3824c392017-11-27 12:54:14 -05003019 // ACTION: An app requested the permission READ_PHONE_STATE
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_REQUEST_READ_PHONE_STATE = 670;
3023
Chris Wren3824c392017-11-27 12:54:14 -05003024 // ACTION: An app was granted the permission READ_PHONE_STATE
3025 // PACKAGE: The package name of the app that was granted the permission
3026 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003027 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3028
Chris Wren3824c392017-11-27 12:54:14 -05003029 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
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_DENIED_READ_PHONE_STATE = 672;
3033
Chris Wren3824c392017-11-27 12:54:14 -05003034 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3035 // PACKAGE: The package name of the app the permission was revoked for
3036 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003037 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3038
Chris Wren3824c392017-11-27 12:54:14 -05003039 // ACTION: An app requested the permission CALL_PHONE
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_REQUEST_CALL_PHONE = 674;
3043
Chris Wren3824c392017-11-27 12:54:14 -05003044 // ACTION: An app was granted the permission CALL_PHONE
3045 // PACKAGE: The package name of the app that was granted the permission
3046 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003047 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3048
Chris Wren3824c392017-11-27 12:54:14 -05003049 // ACTION: An app requested the permission CALL_PHONE and the request was denied
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_DENIED_CALL_PHONE = 676;
3053
Chris Wren3824c392017-11-27 12:54:14 -05003054 // ACTION: The permission CALL_PHONE was revoked for an app
3055 // PACKAGE: The package name of the app the permission was revoked for
3056 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003057 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3058
Chris Wren3824c392017-11-27 12:54:14 -05003059 // ACTION: An app requested the permission READ_CALL_LOG
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_REQUEST_READ_CALL_LOG = 678;
3063
Chris Wren3824c392017-11-27 12:54:14 -05003064 // ACTION: An app was granted the permission READ_CALL_LOG
3065 // PACKAGE: The package name of the app that was granted the permission
3066 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003067 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3068
Chris Wren3824c392017-11-27 12:54:14 -05003069 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
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_DENIED_READ_CALL_LOG = 680;
3073
Chris Wren3824c392017-11-27 12:54:14 -05003074 // ACTION: The permission READ_CALL_LOG was revoked for an app
3075 // PACKAGE: The package name of the app the permission was revoked for
3076 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003077 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3078
Chris Wren3824c392017-11-27 12:54:14 -05003079 // ACTION: An app requested the permission WRITE_CALL_LOG
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_REQUEST_WRITE_CALL_LOG = 682;
3083
Chris Wren3824c392017-11-27 12:54:14 -05003084 // ACTION: An app was granted the permission WRITE_CALL_LOG
3085 // PACKAGE: The package name of the app that was granted the permission
3086 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003087 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3088
Chris Wren3824c392017-11-27 12:54:14 -05003089 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
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_DENIED_WRITE_CALL_LOG = 684;
3093
Chris Wren3824c392017-11-27 12:54:14 -05003094 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3095 // PACKAGE: The package name of the app the permission was revoked for
3096 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003097 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3098
Chris Wren3824c392017-11-27 12:54:14 -05003099 // ACTION: An app requested the permission ADD_VOICEMAIL
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_REQUEST_ADD_VOICEMAIL = 686;
3103
Chris Wren3824c392017-11-27 12:54:14 -05003104 // ACTION: An app was granted the permission ADD_VOICEMAIL
3105 // PACKAGE: The package name of the app that was granted the permission
3106 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003107 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3108
Chris Wren3824c392017-11-27 12:54:14 -05003109 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
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_DENIED_ADD_VOICEMAIL = 688;
3113
Chris Wren3824c392017-11-27 12:54:14 -05003114 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3115 // PACKAGE: The package name of the app the permission was revoked for
3116 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003117 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3118
Chris Wren3824c392017-11-27 12:54:14 -05003119 // ACTION: An app requested the permission USE_SIP
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_REQUEST_USE_SIP = 690;
3123
Chris Wren3824c392017-11-27 12:54:14 -05003124 // ACTION: An app was granted the permission USE_SIP
3125 // PACKAGE: The package name of the app that was granted the permission
3126 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003127 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3128
Chris Wren3824c392017-11-27 12:54:14 -05003129 // ACTION: An app requested the permission USE_SIP and the request was denied
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_DENIED_USE_SIP = 692;
3133
Chris Wren3824c392017-11-27 12:54:14 -05003134 // ACTION: The permission USE_SIP was revoked for an app
3135 // PACKAGE: The package name of the app the permission was revoked for
3136 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003137 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3138
Chris Wren3824c392017-11-27 12:54:14 -05003139 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
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_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3143
Chris Wren3824c392017-11-27 12:54:14 -05003144 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3145 // PACKAGE: The package name of the app that was granted the permission
3146 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003147 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3148
Chris Wren3824c392017-11-27 12:54:14 -05003149 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
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_DENIED_PROCESS_OUTGOING_CALLS = 696;
3153
Chris Wren3824c392017-11-27 12:54:14 -05003154 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3155 // PACKAGE: The package name of the app the permission was revoked for
3156 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003157 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3158
Chris Wren3824c392017-11-27 12:54:14 -05003159 // ACTION: An app requested the permission READ_CELL_BROADCASTS
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_REQUEST_READ_CELL_BROADCASTS = 698;
3163
Chris Wren3824c392017-11-27 12:54:14 -05003164 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3165 // PACKAGE: The package name of the app that was granted the permission
3166 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003167 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3168
Chris Wren3824c392017-11-27 12:54:14 -05003169 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
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_DENIED_READ_CELL_BROADCASTS = 700;
3173
Chris Wren3824c392017-11-27 12:54:14 -05003174 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3175 // PACKAGE: The package name of the app the permission was revoked for
3176 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003177 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3178
Chris Wren3824c392017-11-27 12:54:14 -05003179 // ACTION: An app requested the permission BODY_SENSORS
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_REQUEST_BODY_SENSORS = 702;
3183
Chris Wren3824c392017-11-27 12:54:14 -05003184 // ACTION: An app was granted the permission BODY_SENSORS
3185 // PACKAGE: The package name of the app that was granted the permission
3186 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003187 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3188
Chris Wren3824c392017-11-27 12:54:14 -05003189 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
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_DENIED_BODY_SENSORS = 704;
3193
Chris Wren3824c392017-11-27 12:54:14 -05003194 // ACTION: The permission BODY_SENSORS was revoked for an app
3195 // PACKAGE: The package name of the app the permission was revoked for
3196 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003197 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3198
Chris Wren3824c392017-11-27 12:54:14 -05003199 // ACTION: An app requested the permission SEND_SMS
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_REQUEST_SEND_SMS = 706;
3203
Chris Wren3824c392017-11-27 12:54:14 -05003204 // ACTION: An app was granted the permission SEND_SMS
3205 // PACKAGE: The package name of the app that was granted the permission
3206 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003207 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3208
Chris Wren3824c392017-11-27 12:54:14 -05003209 // ACTION: An app requested the permission SEND_SMS and the request was denied
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_DENIED_SEND_SMS = 708;
3213
Chris Wren3824c392017-11-27 12:54:14 -05003214 // ACTION: The permission SEND_SMS was revoked for an app
3215 // PACKAGE: The package name of the app the permission was revoked for
3216 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003217 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3218
Chris Wren3824c392017-11-27 12:54:14 -05003219 // ACTION: An app requested the permission RECEIVE_SMS
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_REQUEST_RECEIVE_SMS = 710;
3223
Chris Wren3824c392017-11-27 12:54:14 -05003224 // ACTION: An app was granted the permission RECEIVE_SMS
3225 // PACKAGE: The package name of the app that was granted the permission
3226 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003227 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3228
Chris Wren3824c392017-11-27 12:54:14 -05003229 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
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_DENIED_RECEIVE_SMS = 712;
3233
Chris Wren3824c392017-11-27 12:54:14 -05003234 // ACTION: The permission RECEIVE_SMS was revoked for an app
3235 // PACKAGE: The package name of the app the permission was revoked for
3236 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003237 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3238
Chris Wren3824c392017-11-27 12:54:14 -05003239 // ACTION: An app requested the permission READ_SMS
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_REQUEST_READ_SMS = 714;
3243
Chris Wren3824c392017-11-27 12:54:14 -05003244 // ACTION: An app was granted the permission READ_SMS
3245 // PACKAGE: The package name of the app that was granted the permission
3246 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003247 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3248
Chris Wren3824c392017-11-27 12:54:14 -05003249 // ACTION: An app requested the permission READ_SMS and the request was denied
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_DENIED_READ_SMS = 716;
3253
Chris Wren3824c392017-11-27 12:54:14 -05003254 // ACTION: The permission READ_SMS was revoked for an app
3255 // PACKAGE: The package name of the app the permission was revoked for
3256 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003257 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3258
Chris Wren3824c392017-11-27 12:54:14 -05003259 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
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_REQUEST_RECEIVE_WAP_PUSH = 718;
3263
Chris Wren3824c392017-11-27 12:54:14 -05003264 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3265 // PACKAGE: The package name of the app that was granted the permission
3266 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003267 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3268
Chris Wren3824c392017-11-27 12:54:14 -05003269 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
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_DENIED_RECEIVE_WAP_PUSH = 720;
3273
Chris Wren3824c392017-11-27 12:54:14 -05003274 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3275 // PACKAGE: The package name of the app the permission was revoked for
3276 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003277 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3278
Chris Wren3824c392017-11-27 12:54:14 -05003279 // ACTION: An app requested the permission RECEIVE_MMS
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_REQUEST_RECEIVE_MMS = 722;
3283
Chris Wren3824c392017-11-27 12:54:14 -05003284 // ACTION: An app was granted the permission RECEIVE_MMS
3285 // PACKAGE: The package name of the app that was granted the permission
3286 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003287 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3288
Chris Wren3824c392017-11-27 12:54:14 -05003289 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
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_DENIED_RECEIVE_MMS = 724;
3293
Chris Wren3824c392017-11-27 12:54:14 -05003294 // ACTION: The permission RECEIVE_MMS was revoked for an app
3295 // PACKAGE: The package name of the app the permission was revoked for
3296 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003297 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3298
Chris Wren3824c392017-11-27 12:54:14 -05003299 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
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_REQUEST_READ_EXTERNAL_STORAGE = 726;
3303
Chris Wren3824c392017-11-27 12:54:14 -05003304 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3305 // PACKAGE: The package name of the app that was granted the permission
3306 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003307 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3308
Chris Wren3824c392017-11-27 12:54:14 -05003309 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
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_DENIED_READ_EXTERNAL_STORAGE = 728;
3313
Chris Wren3824c392017-11-27 12:54:14 -05003314 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3315 // PACKAGE: The package name of the app the permission was revoked for
3316 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003317 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3318
Chris Wren3824c392017-11-27 12:54:14 -05003319 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
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_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3323
Chris Wren3824c392017-11-27 12:54:14 -05003324 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3325 // PACKAGE: The package name of the app that was granted the permission
3326 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003327 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3328
Chris Wren3824c392017-11-27 12:54:14 -05003329 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3330 // PACKAGE: The package name of the app requesting the permission
3331 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003332 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3333
Chris Wren3824c392017-11-27 12:54:14 -05003334 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3335 // PACKAGE: The package name of the app the permission was revoked for
3336 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003337 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3338
Mahaverfa6566e2016-11-29 21:08:14 +00003339 // ACTION: Logged when a provisioning session has started
3340 PROVISIONING_SESSION_STARTED = 734;
3341
3342 // ACTION: Logged when a provisioning session has completed
3343 PROVISIONING_SESSION_COMPLETED = 735;
3344
Chris Wren3824c392017-11-27 12:54:14 -05003345 // ACTION: An app requested the permission READ_PHONE_NUMBERS
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_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003349
Chris Wren3824c392017-11-27 12:54:14 -05003350 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3351 // PACKAGE: The package name of the app that was granted the permission
3352 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003353 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003354
Chris Wren3824c392017-11-27 12:54:14 -05003355 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3356 // PACKAGE: The package name of the app requesting the permission
3357 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003358 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003359
Chris Wren3824c392017-11-27 12:54:14 -05003360 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3361 // PACKAGE: The package name of the app the permission was revoked for
3362 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003363 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003364
Santos Cordon3107d292016-09-20 15:50:35 -07003365 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3366 // SUBTYPE: slider value
3367 // CATEGORY: QUICK_SETTINGS
3368 // OS: 6.0
3369 ACTION_BRIGHTNESS_FOR_VR = 498;
3370
Hugo Benichie1cbf152016-12-08 09:36:52 +09003371 // ACTION: A captive portal was detected during network validation
3372 // CATEGORY: NOTIFICATION
3373 // OS: N-MR2
3374 NOTIFICATION_NETWORK_SIGN_IN = 740;
3375
3376 // ACTION: An unvalidated network without Internet was selected by the user
3377 // CATEGORY: NOTIFICATION
3378 // OS: N-MR2
3379 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3380
3381 // ACTION: A validated network failed revalidation and lost Internet access
3382 // CATEGORY: NOTIFICATION
3383 // OS: N-MR2
3384 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3385
3386 // ACTION: The system default network switched to a different network
3387 // CATEGORY: NOTIFICATION
3388 // OS: N-MR2
3389 NOTIFICATION_NETWORK_SWITCH = 743;
3390
Fan Zhang074c4cb2016-12-21 12:10:33 -08003391 // OPEN: Settings > System
3392 SETTINGS_SYSTEM_CATEGORY = 744;
3393
3394 // OPEN: Settings > Storage
3395 SETTINGS_STORAGE_CATEGORY = 745;
3396
3397 // OPEN: Settings > Network & Internet
3398 SETTINGS_NETWORK_CATEGORY = 746;
3399
3400 // OPEN: Settings > Connected Device
3401 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3402
3403 // OPEN: Settings > App & Notification
3404 SETTINGS_APP_NOTIF_CATEGORY = 748;
3405
3406 // OPEN: Settings > System > Input & Gesture
3407 SETTINGS_INPUT_CATEGORY = 749;
3408
3409 // OPEN: Settings > System > Language & Region
3410 SETTINGS_LANGUAGE_CATEGORY = 750;
3411
3412 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3413 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3414
3415 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3416 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3417
3418 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3419 SETTINGS_GESTURE_PICKUP = 753;
3420
3421 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3422 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3423
3424 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3425 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3426
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003427 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3428 // CATEGORY: Settings
3429 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3430
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003431 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003432 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003433 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3434 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3435 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003436
Salvador Martinezc43ab062016-12-21 11:09:11 -08003437 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3438 // user accepted
3439 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003440
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003441 // Enclosing category for group of APP_TRANSITION_FOO events,
3442 // logged when we execute an app transition.
3443 APP_TRANSITION = 761;
3444
Fan Zhang945deea2017-01-11 16:37:49 -08003445 // ACTION: User leaves Settings search UI without entering any query.
3446 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3447
3448 // ACTION: Clicking on any search result in Settings.
3449 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003450
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003451 // ACTION: Allow Battery optimization for an app
3452 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3453
3454 // ACTION: Deny Battery optimization for an app
3455 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3456
3457 // ACTION: Enable Device Admin app
3458 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3459
3460 // ACTION: Disable Device Admin app
3461 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3462
3463 // ACTION: Allow "Do Not Disturb access" for an app
3464 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3465
3466 // ACTION: Deny "Do Not Disturb access" for an app
3467 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3468
3469 // ACTION: Allow "Draw over other apps" for an app
3470 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3471
Christine Franks47175c32017-03-14 10:21:25 -07003472 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003473 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3474
3475 // ACTION: Allow "VR helper services" for an app
3476 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3477
3478 // ACTION: Deny "VR helper services" for an app
3479 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3480
3481 // ACTION: Allow "Modify system settings" for an app
3482 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3483
3484 // ACTION: Deny "Modify system settings" for an app
3485 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3486
3487 // ACTION: Allow "Notification access" for an app
3488 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3489
3490 // ACTION: Deny "Notification access" for an app
3491 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3492
3493 // ACTION: "Premium SMS access" for an app - "ask user" option
3494 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3495
3496 // ACTION: "Premium SMS access" for an app - "never allow" option
3497 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3498
3499 // ACTION: "Premium SMS access" for an app - "always allow" option
3500 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3501
3502 // ACTION: Allow "Unrestricted data access" for an app
3503 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3504
3505 // ACTION: Deny "Unrestricted data access" for an app
3506 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3507
3508 // ACTION: Allow "Usage access" for an app
3509 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3510
3511 // ACTION: Deny "Usage access" for an app
3512 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3513
Fan Zhangad5dacc2017-01-18 14:18:54 -08003514 // OPEN: Settings > Apps > Default Apps > Default browser
3515 DEFAULT_BROWSER_PICKER = 785;
3516
3517 // OPEN: Settings > Apps > Default Apps > Default emergency app
3518 DEFAULT_EMERGENCY_APP_PICKER = 786;
3519
3520 // OPEN: Settings > Apps > Default Apps > Default home
3521 DEFAULT_HOME_PICKER = 787;
3522
3523 // OPEN: Settings > Apps > Default Apps > Default phone
3524 DEFAULT_PHONE_PICKER = 788;
3525
3526 // OPEN: Settings > Apps > Default Apps > Default sms
3527 DEFAULT_SMS_PICKER = 789;
3528
3529 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3530 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3531
3532 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3533 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3534
Jason Long1b51da62017-01-24 11:35:31 -08003535 // OPEN: Settings > Apps > Default Apps > Default autofill app
3536 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003537
Chris Wren26ca65d2016-11-29 10:43:28 -05003538 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003539 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003540 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3541 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3542 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3543 NOTIFICATION_ID = 796;
3544 NOTIFICATION_TAG = 797;
3545 NOTIFICATION_SHADE_INDEX = 798;
3546 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003547
Anas Karbilaf7648f42016-12-11 00:55:02 +01003548 // OPEN: QS NFC tile shown
3549 // ACTION: QS NFC tile tapped
3550 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003551 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003552
Chris Wren26ca65d2016-11-29 10:43:28 -05003553 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003554 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003555 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3556 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3557 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3558 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3559 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3560 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3561
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003562 // ACTION: "Force stop" action on an app
3563 ACTION_APP_FORCE_STOP = 807;
3564
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003565 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3566 // CATEGORY: SETTINGS
3567 // OS: 8.0
3568 MANAGE_EXTERNAL_SOURCES = 808;
3569
Mahaver6cd47162017-01-23 09:59:33 +00003570 // ACTION: Logged when terms activity finishes.
3571 // TIME: Indicates time taken by terms activity to finish in MS.
3572 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3573
3574 // Indicates number of terms displayed on the terms screen.
3575 PROVISIONING_TERMS_COUNT = 810;
3576
3577 // Indicates number of terms read on the terms screen.
3578 PROVISIONING_TERMS_READ = 811;
3579
Winson Chung59fda9e2017-01-20 16:14:51 -08003580 // Logs that the user has edited the picture-in-picture settings.
3581 // CATEGORY: SETTINGS
3582 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3583
Winson Chungf4ac0632017-03-17 12:34:12 -07003584 // ACTION: Allow "Enable picture-in-picture" for an app
3585 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003586
Winson Chungf4ac0632017-03-17 12:34:12 -07003587 // ACTION: Deny "Enable picture-in-picture" for an app
3588 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003589
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003590 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3591 // CATEGORY: SETTINGS
3592 // OS: 8.0
3593 TTS_SLIDERS = 815;
3594
Jason Monk524fb402017-01-25 10:33:31 -05003595 // ACTION: Settings -> Display -> Theme
3596 ACTION_THEME = 816;
3597
chchaob8e253a2017-01-25 12:12:09 -08003598 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3599 // ACTION: Select to Speak configuration is chosen
3600 // SUBTYPE: 0 is off, 1 is on
3601 // CATEGORY: SETTINGS
3602 // OS: N
3603 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3604
Anton Philippov95a553e2017-01-27 00:08:24 +00003605 // OPEN: Settings > System > Backup
3606 // CATEGORY: SETTINGS
3607 // OS: O
3608 BACKUP_SETTINGS = 818;
3609
Winson Chung14fbe142016-12-19 16:18:24 -08003610 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003611 // VALUE: true if it was entered while hiding as a result of moving to
3612 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003613 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3614
3615 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3616 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3617 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3618
3619 // ACTION: The activity currently in picture-in-picture was minimized
3620 // VALUE: True if the PiP was minimized, false otherwise
3621 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3622
3623 // ACTION: Picture-in-picture was dismissed via the dismiss button
3624 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3625 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3626
3627 // ACTION: The visibility of the picture-in-picture meny
3628 // VALUE: Whether or not the menu is visible
3629 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3630
3631 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3632 // logged when the aspect ratio changes
3633 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3634
3635 // The current aspect ratio of the PiP, logged when it changes.
3636 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3637
Chris Wren27a52fa2017-02-01 14:21:43 -05003638 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3639 // CATEGORY: GLOBAL_SYSTEM_UI
3640 // OS: O
3641 FIELD_GESTURE_LENGTH = 826;
3642
3643 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3644 // CATEGORY: GLOBAL_SYSTEM_UI
3645 // OS: O
3646 FIELD_GESTURE_VELOCITY = 827;
3647
Christine Franks27fde392017-02-07 10:21:55 -08003648 // OPEN: Carrier demo mode password dialog
3649 CARRIER_DEMO_MODE_PASSWORD = 828;
3650
Fan Zhang70967f32017-02-13 16:02:24 -08003651 // ACTION: Create a Settings shortcut item.
3652 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3653
3654 // ACTION: A tile in Settings information architecture is clicked
3655 ACTION_SETTINGS_TILE_CLICK = 830;
3656
Julia Reynolds520df6e2017-02-13 09:05:10 -05003657 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3658 // updated
3659 // CATEGORY: NOTIFICATION
3660 // OS: O
3661 NOTIFICATION_SNOOZED = 831;
3662
3663 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3664 // OS: O
3665 NOTIFICATION_SNOOZED_CRITERIA = 832;
3666
Fan Zhang65899432017-02-14 13:36:53 -08003667 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003668 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003669 FIELD_CONTEXT = 833;
3670
Fan Zhangd95dcb42017-02-14 13:48:09 -08003671 // ACTION: Settings advanced button is expanded
3672 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3673
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003674 // ACTION: Logs the number of times the saved network evaluator was used to
3675 // recommend a wifi network
3676 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3677
3678 // ACTION: Logs the number of times the recommended network evaluator was
3679 // used to recommend a wifi network
3680 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3681
3682 // ACTION: Logs the number of times a recommended network was resulted in a
3683 // successful connection
3684 // VALUE: true if the connection was successful, false if the connection failed
3685 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3686
Daniel Nishic581bfc2017-02-08 10:18:19 -08003687 // OPEN: Settings > Storage > Games
3688 // CATEGORY: SETTINGS
3689 // OS: O
3690 APPLICATIONS_STORAGE_GAMES = 838;
3691
3692 // OPEN: Settings > Storage > Audio and Music
3693 // CATEGORY: SETTINGS
3694 // OS: O
3695 APPLICATIONS_STORAGE_MUSIC = 839;
3696
3697 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3698 // CATEGORY: SETTINGS
3699 // OS: O
3700 STORAGE_FREE_UP_SPACE_NOW = 840;
3701
3702 // ACTION: Settings > Storage > Files to open the File Manager
3703 // CATEGORY: SETTINGS
3704 // OS: O
3705 STORAGE_FILES = 841;
3706
Fan Zhangb1d49222017-02-15 17:12:58 -08003707 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003708 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003709
Fan Zhang7f2cace2017-02-17 12:05:48 -08003710 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3711 DEFAULT_ASSIST_PICKER = 843;
3712
3713 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3714 DEFAULT_VOICE_INPUT_PICKER = 844;
3715
Daniel Nishi4058a842017-02-21 17:11:35 -08003716 // OPEN: Settings > Storage > [Profile]
3717 SETTINGS_STORAGE_PROFILE = 845;
3718
Doris Lingedb84c32017-02-23 10:56:01 -08003719 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3720 // CATEGORY: SETTINGS
3721 // OS: O
3722 ENCRYPTION_AND_CREDENTIAL = 846;
3723
Fan Zhangb66e5422017-02-24 14:37:45 -08003724 // ACTION: Settings > About device > Build number
3725 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3726
3727 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3728 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3729
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003730 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3731 // CATEGORY: SETTINGS
3732 // OS: O
3733 WIFI_NETWORK_DETAILS = 849;
3734
jackqdyuleia2a14342017-02-28 16:20:48 -08003735 // ACTION: Settings > Battery > Menu > Usage Alerts
3736 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3737
3738 // ACTION: Settings > Battery > Menu > Optimization
3739 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3740
3741 // ACTION: Settings > Battery > Menu > Apps Toggle
3742 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3743
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003744 // ACTION: Settings > Any preference is changed
3745 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3746
3747 // FIELD: The name of preference when it is changed in Settings
3748 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3749
3750 // FIELD: The new value of preference when it is changed in Settings
3751 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3752
Julia Reynoldsd373d782017-03-03 13:32:57 -05003753 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3754 // channel updated
3755 // PACKAGE: the package the channel belongs too
3756 // CATEGORY: NOTIFICATION
3757 // OS: O
3758 ACTION_NOTIFICATION_CHANNEL = 856;
3759
3760 // Tagged data for notification channel. String.
3761 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3762
3763 // Tagged data for notification channel. int.
3764 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3765
3766 // OPEN: Notification channel group created.
3767 // PACKAGE: the package the group belongs to
3768 // CATEGORY: NOTIFICATION
3769 // OS: O
3770 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3771
3772 // Tagged data for notification channel group. String.
3773 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3774
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003775 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3776 // CATEGORY: SETTINGS
3777 // OS: O
3778 SETTINGS_NETWORK_SCORER = 861;
3779
Fan Zhang99861312017-03-07 14:32:38 -08003780 // OPEN: Settings > About device > Model > Hardware info dialog
3781 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3782
mariagpuyol0f5512e2017-03-01 12:09:56 -08003783 // ACTION: Checks whether a contact's phone still exists
3784 // Value 0: It doesn't exist anymore
3785 // Value 1: It still exists
3786 // Value 2: A SecurityException was thrown
3787 // CATEGORY: SETTINGS
3788 // OS: N
3789 ACTION_PHONE_EXISTS = 863;
3790
3791 // ACTION: Retrieves a contact from CP2
3792 // Value 0: Contact retrieved without issues
3793 // Value 1: An IllegalArgumentException was thrown
3794 // CATEGORY: SETTINGS
3795 // OS: N
3796 ACTION_GET_CONTACT = 864;
3797
Chris Wren4d6b54d2017-04-27 16:56:54 -04003798 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003799 // internal platform metrics use.
3800 RESERVED_FOR_LOGBUILDER_PID = 865;
3801
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003802 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3803 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3804
3805 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3806 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3807
3808 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3809 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3810
3811 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3812 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3813
3814 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3815 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3816
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003817 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003818 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003819
Fan Zhang082d21c2017-03-13 15:25:54 -07003820 // ACTION: Settings > App detail > Uninstall
3821 ACTION_SETTINGS_UNINSTALL_APP = 872;
3822
3823 // ACTION: Settings > App detail > Uninstall Device admin app
3824 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3825
3826 // ACTION: Settings > App detail > Disable app
3827 ACTION_SETTINGS_DISABLE_APP = 874;
3828
3829 // ACTION: Settings > App detail > Enable app
3830 ACTION_SETTINGS_ENABLE_APP = 875;
3831
3832 // ACTION: Settings > App detail > Clear data
3833 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3834
3835 // ACTION: Settings > App detail > Clear cache
3836 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3837
3838 // ACTION: Clicking on any search result in Settings.
3839 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3840
3841 // FIELD: Settings inline search result name
3842 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3843
3844 // FIELD: Settings inline search result value
3845 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3846
Fan Zhang53797932017-03-13 17:46:24 -07003847 // ACTION: Settings > Search > Click saved queries
3848 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3849
Doris Lingbf8d9de2017-03-15 11:52:50 -07003850 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3851 // CATEGORY: SETTINGS
3852 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3853
Chris Wren3824c392017-11-27 12:54:14 -05003854 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
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_REQUEST_ACCESS_NOTIFICATIONS = 883;
3858
Chris Wren3824c392017-11-27 12:54:14 -05003859 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3860 // PACKAGE: The package name of the app that was granted the permission
3861 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003862 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3863
Chris Wren3824c392017-11-27 12:54:14 -05003864 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
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_DENIED_ACCESS_NOTIFICATIONS = 885;
3868
Chris Wren3824c392017-11-27 12:54:14 -05003869 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3870 // PACKAGE: The package name of the app the permission was revoked for
3871 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003872 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3873
Chris Wren3824c392017-11-27 12:54:14 -05003874 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
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_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3878
Chris Wren3824c392017-11-27 12:54:14 -05003879 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3880 // PACKAGE: The package name of the app that was granted the permission
3881 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003882 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3883
Chris Wren3824c392017-11-27 12:54:14 -05003884 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
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_DENIED_SYSTEM_ALERT_WINDOW = 889;
3888
Chris Wren3824c392017-11-27 12:54:14 -05003889 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3890 // PACKAGE: The package name of the app the permission was revoked for
3891 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003892 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3893
Chris Wren3824c392017-11-27 12:54:14 -05003894 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
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_REQUEST_WRITE_SETTINGS = 891;
3898
Chris Wren3824c392017-11-27 12:54:14 -05003899 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3900 // PACKAGE: The package name of the app that was granted the permission
3901 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003902 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3903
Chris Wren3824c392017-11-27 12:54:14 -05003904 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
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_DENIED_WRITE_SETTINGS = 893;
3908
Chris Wren3824c392017-11-27 12:54:14 -05003909 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3910 // PACKAGE: The package name of the app the permission was revoked for
3911 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003912 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3913
Chris Wren3824c392017-11-27 12:54:14 -05003914 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
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_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3918
Chris Wren3824c392017-11-27 12:54:14 -05003919 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3920 // PACKAGE: The package name of the app that was granted the permission
3921 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003922 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3923
Chris Wren3824c392017-11-27 12:54:14 -05003924 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3925 // PACKAGE: The package name of the app requesting the permission
3926 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003927 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3928
Chris Wren3824c392017-11-27 12:54:14 -05003929 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3930 // PACKAGE: The package name of the app the permission was revoked for
3931 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003932 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3933
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003934 // ACTION: Phase 1 of instant application resolution occurred
3935 // OS: O
3936 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3937
3938 // ACTION: Phase 2 of instant application resolution occurred
3939 // OS: O
3940 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3941
3942 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3943 // OS: O
3944 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3945
3946 // FIELD: The status of an ephemeral resolution phase
3947 // Value 0: success
3948 // Value 1: no full hash match
3949 // OS: O
3950 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3951
3952 // FIELD - A token to identify all events that are part of the same instant application launch
3953 // OS: O
3954 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3955
3956 // FIELD - The name of the package responsible for launching the activity
3957 // OS: O
3958 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3959
3960 // FIELD - Whether or not the launched activity is part of an instant application
3961 // OS: O
3962 APP_TRANSITION_IS_EPHEMERAL = 905;
3963
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003964 // An autofill session was started
3965 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003966 // NOTE: starting on OS MR1, it also added the following field:
3967 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3968 // NOTE: starting on OS P, it also added the following field:
3969 // Tag FIELD_FLAGS - Flags used to start the session
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003970 AUTOFILL_SESSION_STARTED = 906;
3971
3972 // An autofill request was processed by a service
3973 // Type TYPE_SUCCESS: The request succeeded
3974 // Type TYPE_FAILURE: The request failed
3975 // Package: Package of app that is autofilled
3976 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07003977 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
3978 // the service returned a null response.
Felipe Leme5e047202017-12-05 16:30:06 -08003979 // NOTE: starting on OS P, it also added:
3980 // Type TYPE_CLOSE: Service returned a null response.
3981 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
3982 // number of entries field ids in the request.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003983 AUTOFILL_REQUEST = 907;
3984
3985 // Tag of a field for a package of an autofill service
3986 FIELD_AUTOFILL_SERVICE = 908;
3987
3988 // Tag of a field for the number of datasets
3989 FIELD_AUTOFILL_NUM_DATASETS = 909;
3990
3991 // An autofill dataset selection UI was shown
3992 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3993 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3994 // Type TYPE_ACTION: dataset was selected
3995 // Type TYPE_DETAIL: authentication was selected
3996 // Package: Package of app that was autofilled
3997 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3998 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Leme6ef61b82018-02-15 16:26:02 -08003999 // NOTE: starting on OS P, it also added the following field:
4000 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004001 AUTOFILL_FILL_UI = 910;
4002
4003 // Tag of a field for the length of the filter text
4004 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4005
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004006 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004007 // Package: Package of app that was autofilled
4008 AUTOFILL_AUTHENTICATED = 912;
4009
4010 // An activity was autofilled and all values could be applied
4011 // Package: Package of app that is autofilled
4012 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4013 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
4014 AUTOFILL_DATASET_APPLIED = 913;
4015
4016 // Tag of a field for the number values to be filled in
4017 FIELD_AUTOFILL_NUM_VALUES = 914;
4018
4019 // Tag of a field for the number of views that were filled
4020 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4021
4022 // An autofill save UI was shown
4023 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4024 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4025 // Type TYPE_ACTION: data was saved
4026 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004027 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
4028 // NOTE: starting on OS P, it also added the following field:
4029 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004030 AUTOFILL_SAVE_UI = 916;
4031
4032 // Tag of a field for the number of saveable ids
4033 FIELD_AUTOFILL_NUM_IDS = 917;
4034
4035 // ACTION: An autofill service was reqiested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004036 // Type TYPE_SUCCESS: The request succeeded right away
4037 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004038 // Type TYPE_FAILURE: The request failed
4039 // Package: Package of app that was autofilled
4040 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4041 AUTOFILL_DATA_SAVE_REQUEST = 918;
4042
4043 // An auto-fill session was finished
4044 // Package: Package of app that was autofilled
4045 AUTOFILL_SESSION_FINISHED = 919;
4046
Chris Wren148805582017-03-17 17:18:11 -04004047 // meta-event: a reader has checkpointed the log here.
4048 METRICS_CHECKPOINT = 920;
4049
Fan Zhanged1845f2017-03-23 14:46:59 -07004050 // OPEN: Settings -> Display -> When in VR Mode
4051 VR_DISPLAY_PREFERENCE = 921;
4052
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004053 // OPEN: Settings > Accessibility > Magnification
4054 // CATEGORY: SETTINGS
4055 // OS: O
4056 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004057
4058 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4059 // app.
4060 // VALUE: The package name of the app
4061 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4062
Fan Zhang1a34e752017-03-24 13:44:51 -07004063 // OPEN: Settings -> System -> Reset options
4064 RESET_DASHBOARD = 924;
4065
Jason Monk8c09ac72017-03-16 11:53:40 -04004066 // ACTION: QS -> Tile clicked
4067 ACTION_QS_CLICK = 925;
4068
4069 // ACTION: QS -> Secondary click
4070 ACTION_QS_SECONDARY_CLICK = 926;
4071
4072 // FIELD: Position info in QS clicks
4073 FIELD_QS_POSITION = 927;
4074
4075 // FIELD: The value of a QS tile when clicked (if applicable)
4076 FIELD_QS_VALUE = 928;
4077
4078 // ACTION: QS -> Detail panel -> more settings
4079 ACTION_QS_MORE_SETTINGS = 929;
4080
4081 // ACTION: QS -> Click date
4082 ACTION_QS_DATE = 930;
4083
Jason Monk1b775652017-03-31 15:42:27 -04004084 // ACTION: Event on nav button
4085 ACTION_NAV_BUTTON_EVENT = 931;
4086
4087 // FIELD: Flags for a nav button event
4088 FIELD_FLAGS = 932;
4089
4090 // FIELD: Action for a nav button event
4091 FIELD_NAV_ACTION = 933;
4092
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004093 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4094 // CATEGORY: SETTINGS
4095 // OS: O
4096 FINGERPRINT_REMOVE_SIDECAR = 934;
4097
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004098 // OPEN: Settings > Storage > Movies & TV
4099 // CATEGORY: SETTINGS
4100 // OS: O
4101 APPLICATIONS_STORAGE_MOVIES = 935;
4102
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004103 // OPEN: Text selection "assist" menu item shown.
4104 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4105 // CATEGORY: TEXT_CONTROLS
4106 // OS: O
4107 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4108
4109 // ACTION: Text selection "assist" menu item clicked.
4110 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4111 // CATEGORY: TEXT_CONTROLS
4112 // OS: O
4113 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4114
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004115 // OPEN: Settings > Security > Managed Device Info > Apps installed
4116 // CATEGORY: SETTINGS
4117 // OS: O
4118 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4119
4120 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4121 // CATEGORY: SETTINGS
4122 // OS: O
4123 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4124
4125 // OPEN: Settings > Security > Managed Device Info > Default apps
4126 // CATEGORY: SETTINGS
4127 // OS: O
4128 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4129
Julia Reynolds80b18072017-04-23 12:27:07 -04004130 // OPEN: Settings > Notifications > An app > A channel > Importance
4131 // CATEGORY: SETTINGS
4132 // OS: O
4133 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4134
4135 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4136 // CATEGORY: SETTINGS
4137 // OS: O
4138 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4139
Chris Wren4d6b54d2017-04-27 16:56:54 -04004140 // This value should never appear in log outputs - it is reserved for
4141 // internal platform metrics use.
4142 RESERVED_FOR_LOGBUILDER_UID = 943;
4143
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004144 // OPEN: Running background apps notification > List of background apps
4145 // CATEGORY: GLOBAL_SYSTEM_UI
4146 // OS: O
4147 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4148
Jorim Jaggi515dd682017-05-05 15:05:07 +02004149 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4150 // client.
4151 // OS: O
4152 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4153
Chris Wrenb3921792017-06-01 13:34:46 -04004154 // FIELD - The group ID of a notification.
4155 // Type: string
4156 // OS: O
4157 FIELD_NOTIFICATION_GROUP_ID = 946;
4158
4159 // FIELD - If the notification is a group summary: 1.
4160 // Type: int encoded boolean
4161 // OS: O
4162 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4163
Felipe Leme637e05e2017-12-06 12:09:37 -08004164 // An app attempted to forge a different component name in the AssisStructure that would be
4165 // passed to the autofill service.
4166 // OS: O (security patch)
4167 // Package: Real package of the app being autofilled
4168 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4169 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
4170 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4171
4172 // FIELD - The component that an app tried tro forged.
4173 // Type: string
4174 // OS: O (security patch)
4175 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4176
Chris Wren26ca65d2016-11-29 10:43:28 -05004177 // ---- End O Constants, all O constants go above this line ----
4178
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004179 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4180 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4181
jackqdyulei92e492e2017-04-28 13:04:42 -07004182 // OPEN: Settings > Battery > High Usage > Abnormal app page
4183 // CATEGORY: SETTINGS
4184 FUELGAUGE_ANOMALY_DETAIL = 987;
4185
4186 // OPEN: Settings > Battery > High Usage
4187 DIALOG_HANDLE_ANOMALY = 988;
4188
Jonathan Solnita4138162017-05-10 21:06:04 -07004189 // ACTION: Camera lift gesture
4190 // CATEGORY: GLOBAL_SYSTEM_UI
4191 // OS: O
4192 ACTION_CAMERA_LIFT_TRIGGER = 989;
4193
Maurice Lam76ae09c2017-05-05 12:03:49 -07004194 // OPEN: Choose screen lock dialog in Settings
4195 // CATEGORY: SETTINGS
4196 // OS: O DR
4197 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4198
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004199 // OPEN: Assist Gesture training intro in Settings
4200 // CATEGORY: SETTINGS
4201 // OS: O DR
4202 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4203
4204 // OPEN: Assist Gesture training enrolling in Settings
4205 // CATEGORY: SETTINGS
4206 // OS: O DR
4207 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4208
4209 // OPEN: Assist Gesture training finished in Settings
4210 // CATEGORY: SETTINGS
4211 // OS: O DR
4212 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4213
Fan Zhangc666a202017-05-18 17:50:20 -07004214 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4215 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4216
4217 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4218 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4219
Philip Quinn0f9566d2017-05-23 10:32:08 -07004220 // OPEN: Settings > System > Languages & input > Assist gesture
4221 // CATEGORY: SETTINGS
4222 // OS: O DR
4223 SETTINGS_ASSIST_GESTURE = 996;
4224
4225 // ACTION: Assist gesture released without triggering
4226 // CATEGORY: GLOBAL_SYSTEM_UI
4227 // OS: O DR
4228 ASSIST_GESTURE_RELEASED = 997;
4229
4230 // ACTION: Assist gesture primed
4231 // CATEGORY: GLOBAL_SYSTEM_UI
4232 // OS: O DR
4233 ASSIST_GESTURE_PRIMED = 998;
4234
4235 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004236 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004237 // CATEGORY: GLOBAL_SYSTEM_UI
4238 // OS: O DR
4239 ASSIST_GESTURE_TRIGGERED = 999;
4240
Fan Zhang238162b2017-05-25 14:01:41 -07004241 // ACTION: Update default app from Settings
4242 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4243
4244 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004245 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004246
4247 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004248 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004249
Adrian Roos1c81d772017-05-25 18:00:21 -07004250 // OPEN: Settings > Display > Ambient Display
4251 // CATEGORY: SETTINGS
4252 // OS: O DR
4253 AMBIENT_DISPLAY_SETTINGS = 1003;
4254
Hugo Benichi11da42b2017-05-31 11:11:37 +09004255 // ACTION: CaptivePortalLoginActivity starts
4256 // CATEGORY: GLOBAL_SYSTEM_UI
4257 // OS: O DR
4258 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4259
4260 // ACTION: CaptivePortalLoginActivity auto-closes
4261 // CATEGORY: GLOBAL_SYSTEM_UI
4262 // OS: O DR
4263 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4264
4265 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4266 // CATEGORY: GLOBAL_SYSTEM_UI
4267 // OS: O DR
4268 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4269
4270 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4271 // CATEGORY: GLOBAL_SYSTEM_UI
4272 // OS: O DR
4273 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4274
4275 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4276 // CATEGORY: SETTINGS
4277 // OS: O DR
4278 ACTION_WIFI_SIGNIN = 1008;
4279
Antony Sargentf3cc3172017-05-04 14:58:06 -07004280 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4281 // CATEGORY: SETTINGS
4282 // OS: O DR
4283 BLUETOOTH_DEVICE_DETAILS = 1009;
4284
fanzhang172255759d2017-06-05 21:43:47 -07004285 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4286 CONFIGURE_KEYGUARD_DIALOG = 1010;
4287
Fan Zhange33c70d2017-06-06 12:37:13 -07004288 // Open: Settings > Search > No Result View
4289 SETTINGS_SEARCH_NO_RESULT = 1011;
4290
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004291 // OPEN: Assist Gesture before training
4292 // CATEGORY: SETTINGS
4293 // OS: O DR
4294 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4295
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004296 // CaptivePortalLoginActivity displays SSL error page
4297 // CATEGORY: GLOBAL_SYSTEM_UI
4298 // OS: O DR
4299 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4300
Fan Zhang1a0fc992017-06-13 13:45:21 -07004301 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4302 WIFI_TETHER_SETTINGS = 1014;
4303
Antony Sargentc3b5da62017-06-16 11:50:13 -07004304 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4305 // -> Edit name button.
4306 // CATEGORY: SETTINGS
4307 // OS: O DR
4308 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4309
Fan Zhang543587d2017-06-19 12:32:14 -07004310 // ACTION: Settings > Notification Settings > Open application notification
4311 // CATEGORY: SETTINGS
4312 // OS: O DR
4313 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4314
4315 // ACTION: Settings > App Info > Open app settings
4316 // CATEGORY: SETTINGS
4317 // OS: O DR
4318 ACTION_OPEN_APP_SETTING = 1017;
4319
jackqdyulei2f1a3592017-06-19 13:11:05 -07004320 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4321 // CATEGORY: SETTINGS
4322 // OS: O DR
4323 BLUETOOTH_PAIRING = 1018;
4324
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004325 // ACTION: Collect PSD Signals
4326 // CATEGORY: SETTINGS
4327 // OS: O DR
4328 ACTION_PSD_LOADER = 1019;
4329
jackqdyulei602bcc92017-06-21 15:17:53 -07004330 // ACTION: Background check action on an app
4331 // CATEGORY: SETTINGS
4332 // OS: O DR
4333 ACTION_APP_BACKGROUND_CHECK = 1020;
4334
4335 // ACTION: Location check action on an app
4336 // CATEGORY: SETTINGS
4337 // OS: O DR
4338 ACTION_APP_LOCATION_CHECK = 1021;
4339
Charlie Wang15a36ed2017-06-14 14:46:39 -07004340 // Device headset status
4341 // CATEGORY: OTHER
4342 // SUBTYPE: 1 is DON, 2 is DOFF
4343 // OS: O DR
4344 ACTION_HEADSET_STATUS = 1022;
4345
4346 // Device Headset Plug status
4347 // CATEGORY: OTHER
4348 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4349 // OS: O DR
4350 ACTION_HEADSET_PLUG = 1023;
4351
4352 // Device Headset battery level on Plug
4353 // CATEGORY: OTHER
4354 // FIELD - The battery percentage when the user decided to plug in
4355 // Type: integer
4356 // OS: O DR
4357 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4358
Charlie Wang566ec702017-06-26 15:30:03 -07004359 // Device Headset battery level on Plug
4360 // CATEGORY: OTHER
4361 // FIELD - The battery percentage when the user decided to plug in
4362 // Type: integer
4363 // OS: O DR
4364 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4365
Charlie Wang15a36ed2017-06-14 14:46:39 -07004366 // Device Headset Pose status
4367 // CATEGORY: OTHER
4368 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4369 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004370 ACTION_HEADSET_POSE_STATUS = 1026;
4371
4372 // Device Headset Usage session time
4373 // CATEGORY: OTHER
4374 // FIELD - The time the headset was used in a session
4375 // OS: O DR
4376 FIELD_SESSION_TIME_MS = 1027;
4377
4378 // Device Headset Idle time
4379 // CATEGORY: OTHER
4380 // FIELD - The time in between each session
4381 // OS: O DR
4382 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4383
4384 // Device Headset charge session time
4385 // CATEGORY: OTHER
4386 // FIELD - The time taken for each charge
4387 // OS: O DR
4388 FIELD_TIME_OF_CHARGE_MS = 1029;
4389
4390 // Device Headset time between charge
4391 // CATEGORY: OTHER
4392 // FIELD - The time in between each charge
4393 // OS: O DR
4394 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004395
Antony Sargentca701a22017-07-05 17:02:00 -07004396 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4397 // -> Forget button.
4398 // CATEGORY: SETTINGS
4399 // OS: O DR
4400 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4401
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004402 // An event from the camera service
4403 // CATEGORY: OTHER
4404 // SUBTYPE: CameraEvent
4405 // OS: O DR
4406 ACTION_CAMERA_EVENT = 1032;
4407
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004408 // OPEN: Settings > Trampoline Intent > Settings page
4409 // CATEGORY: SETTINGS
4410 // OS: O DR
4411 TRAMPOLINE_SETTINGS_EVENT = 1033;
4412
Chris Wren9a4f2662017-06-29 10:10:02 -04004413 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4414
Malcolm Chen21062542017-06-20 11:36:01 -07004415 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4416 // CATEGORY: SETTINGS
4417 // OS: O MR
4418 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4419
4420 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4421 // CATEGORY: SETTINGS
4422 // OS: O MR
4423 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4424
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004425 // FIELD - State of asynchronous ranking when Settings search result is clicked
4426 // CATEGORY: SETTINGS
4427 // OS: O MR
4428 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4429
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004430 // ACTION: Settings > Connected devices > SMS Mirroring
4431 // CATEGORY: SETTINGS
4432 // OS: O MR
4433 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4434
Kang Li2c571892017-07-05 14:47:32 -07004435 // ACTION: Chooser picked a ranked target.
4436 // CATEGORY: GLOBAL_SYSTEM_UI
4437 // OS: O MR
4438 ACTION_TARGET_SELECTED = 1085;
4439
4440 // FIELD - is category used in Chooser: 1.
4441 // Type: int encoded boolean
4442 // CATEGORY: GLOBAL_SYSTEM_UI
4443 // OS: O MR
4444 FIELD_IS_CATEGORY_USED = 1086;
4445
4446 // FIELD - ranked position of selected target for Chooser.
4447 // CATEGORY: GLOBAL_SYSTEM_UI
4448 // OS: O MR
4449 FIELD_RANKED_POSITION = 1087;
4450
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004451 // OPEN: Settings > Data plan usage
4452 // CATEGORY: SETTINGS
4453 // OS: O MR
4454 DATA_PLAN_USAGE_SUMMARY = 1088;
4455
Doris Lingce007eb2017-08-09 13:59:46 -07004456 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4457 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4458
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004459 // ACTION: Logged when the app has notified that it has fully drawn. See
4460 // Activity.reportFullyDrawn().
4461 APP_TRANSITION_REPORTED_DRAWN = 1090;
4462
4463 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4464 // the app transition.
4465 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4466
Daniel Nishia86115f2017-08-23 10:27:08 -07004467 // OPEN: Settings > Storage > Photos & Videos
4468 // CATEGORY: SETTINGS
4469 // OS: O MR
4470 APPLICATIONS_STORAGE_PHOTOS = 1092;
4471
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004472 // ACTION: Logged when the status bar icons change.
4473 // OS: O MR
4474 STATUS_BAR_ICONS_CHANGED = 1093;
4475
4476 // FIELD: Bitfield indicating which icons are shown.
4477 // OS: O MR
4478 FIELD_STATUS_ICONS = 1094;
4479
4480 // FIELD: Number of status icons currently shown.
4481 // OS: O MR
4482 FIELD_NUM_STATUS_ICONS = 1095;
4483
Jack He4b605792017-09-01 11:48:30 -07004484 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4485 // CATEGORY: SETTINGS
4486 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004487 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004488
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004489 // FIELD - Whether smart suggestion ranking was enabled or not
4490 // Type: int encoded boolean
4491 // CATEGORY: SETTINGS
4492 // OS: O MR
4493 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4494
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004495 // ACTION: The device boots
4496 ACTION_BOOT = 1098;
4497
4498 // FIELD: A string value representing some state of the platform, e.g., boot reason
4499 FIELD_PLATFORM_REASON = 1099;
4500
Jan Althaus786a39d2017-09-15 10:41:16 +02004501 // CATEGORY: The category for all actions relating to selection session logging.
4502 // OS: O MR
4503 TEXT_SELECTION_SESSION = 1100;
4504
4505 // ACTION: A selection session started (i.e. the selection handles appeared)
4506 // CATEGORY: TEXT_SELECTION_SESSION
4507 // OS: O MR
4508 ACTION_TEXT_SELECTION_START = 1101;
4509
4510 // ACTION: The user modified the selection (e.g. by dragging the handles)
4511 // CATEGORY: TEXT_SELECTION_SESSION
4512 // OS: O MR
4513 ACTION_TEXT_SELECTION_MODIFY = 1102;
4514
4515 // ACTION: The user modified the selection by pressing the "select all" button.
4516 // CATEGORY: TEXT_SELECTION_SESSION
4517 // OS: O MR
4518 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4519
4520 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4521 // CATEGORY: TEXT_SELECTION_SESSION
4522 // OS: O MR
4523 ACTION_TEXT_SELECTION_RESET = 1104;
4524
4525 // ACTION: Smart selection made a single word prediction
4526 // CATEGORY: TEXT_SELECTION_SESSION
4527 // OS: O MR
4528 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4529
4530 // ACTION: Smart selection made a multi word prediction
4531 // CATEGORY: TEXT_SELECTION_SESSION
4532 // OS: O MR
4533 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4534
4535 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4536 // CATEGORY: TEXT_SELECTION_SESSION
4537 // OS: O MR
4538 ACTION_TEXT_SELECTION_AUTO = 1107;
4539
4540 // ACTION: A selection session ended with the user typing over the text
4541 // CATEGORY: TEXT_SELECTION_SESSION
4542 // OS: O MR
4543 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4544
4545 // ACTION: A selection session ended with the user copying the text
4546 // CATEGORY: TEXT_SELECTION_SESSION
4547 // OS: O MR
4548 ACTION_TEXT_SELECTION_COPY = 1109;
4549
4550 // ACTION: A selection session ended with the user pasting over the text
4551 // CATEGORY: TEXT_SELECTION_SESSION
4552 // OS: O MR
4553 ACTION_TEXT_SELECTION_PASTE = 1110;
4554
4555 // ACTION: A selection session ended with the user cutting the text
4556 // CATEGORY: TEXT_SELECTION_SESSION
4557 // OS: O MR
4558 ACTION_TEXT_SELECTION_CUT = 1111;
4559
4560 // ACTION: A selection session ended with the user pressing the share button
4561 // CATEGORY: TEXT_SELECTION_SESSION
4562 // OS: O MR
4563 ACTION_TEXT_SELECTION_SHARE = 1112;
4564
4565 // ACTION: A selection session ended with the user pressing the smart share button
4566 // CATEGORY: TEXT_SELECTION_SESSION
4567 // OS: O MR
4568 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4569
4570 // ACTION: A selection session ended with the user dragging the text
4571 // CATEGORY: TEXT_SELECTION_SESSION
4572 // OS: O MR
4573 ACTION_TEXT_SELECTION_DRAG = 1114;
4574
4575 // ACTION: A selection session ended with the user abandoning the selection
4576 // CATEGORY: TEXT_SELECTION_SESSION
4577 // OS: O MR
4578 ACTION_TEXT_SELECTION_ABANDON = 1115;
4579
4580 // ACTION: A selection session ended with the user picking an unhandled action bar item
4581 // CATEGORY: TEXT_SELECTION_SESSION
4582 // OS: O MR
4583 ACTION_TEXT_SELECTION_OTHER = 1116;
4584
4585 // FIELD: Time in milliseconds from the start of the session to this event
4586 // CATEGORY: TEXT_SELECTION_SESSION
4587 // OS: O MR
4588 FIELD_SELECTION_SINCE_START = 1117;
4589
4590 // FIELD: time in milliseconds between the last event in the session and this one
4591 // CATEGORY: TEXT_SELECTION_SESSION
4592 // OS: O MR
4593 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4594
4595 // FIELD: a random uid for a selection session (lasting from select start to end)
4596 // CATEGORY: TEXT_SELECTION_SESSION
4597 // OS: O MR
4598 FIELD_SELECTION_SESSION_ID = 1119;
4599
4600 // FIELD: the sequence number of the event in the session
4601 // CATEGORY: TEXT_SELECTION_SESSION
4602 // OS: O MR
4603 FIELD_SELECTION_SESSION_INDEX = 1120;
4604
4605 // FIELD: a concatenation of the widget type and ML model version.
4606 // CATEGORY: TEXT_SELECTION_SESSION
4607 // OS: O MR
4608 FIELD_SELECTION_VERSION_TAG = 1121;
4609
4610 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4611 // packed 16bit integers. (start in MSBs, end in LSBs)
4612 // CATEGORY: TEXT_SELECTION_SESSION
4613 // OS: O MR
4614 FIELD_SELECTION_RANGE = 1122;
4615
4616 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4617 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4618 // CATEGORY: TEXT_SELECTION_SESSION
4619 // OS: O MR
4620 FIELD_SELECTION_SMART_RANGE = 1123;
4621
Felipe Lemeb22d6352017-09-08 20:03:53 -07004622 // The value of an autofillable and savable view was reset
4623 // Package: Package of app that was autofilled
4624 // OS: O MR
4625 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4626 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
4627 AUTOFILL_VALUE_RESET = 1124;
4628
4629 // Tag of AUTOFILL_VALUE_RESET
4630 // OS: O MR
4631 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4632
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004633 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004634 // Package: Package of app that was autofilled
4635 // OS: O MR
4636 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4637 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4638
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004639 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004640 // Package: Package of app that was autofilled
4641 // OS: O MR
4642 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4643 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4644
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004645 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004646 // Package: Package of app that was autofilled
4647 // OS: O MR
4648 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4649 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4650
Felipe Leme2c888422017-10-26 12:46:35 -07004651 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004652 // Package: Package of app that is autofilled
4653 // OS: O MR
4654 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4655 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4656 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4657
4658 // FIELD - Type of save object passed by the service when the Save UI is shown
4659 // OS: O MR
4660 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4661
Felipe Leme2c888422017-10-26 12:46:35 -07004662 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004663 // Package: Package of app that is autofilled
4664 // OS: O MR
4665 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4666 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4667 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4668
Felipe Leme2c888422017-10-26 12:46:35 -07004669 // 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 -07004670 // Package: Package of app that is autofilled
4671 // OS: O MR
4672 // Type TYPE_UNKNOWN: The link was not properly set by the service
4673 // Type TYPE_OPEN: The link launched an activity
4674 // Type TYPE_FAILURE: The link could not launc an activity
4675 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4676 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4677 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4678
4679 // Result of the validation on save when an autofill service provided a validator
4680 // Package: Package of app that is autofilled
4681 // OS: O MR
4682 // Type TYPE_FAILURE: The validation could not be performed due to an error
4683 // Type TYPE_SUCCESS: The validation passed
4684 // Type TYPE_DISMISS: The validation failed
4685 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4686 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4687 AUTOFILL_SAVE_VALIDATION = 1133;
4688
Felipe Leme2c888422017-10-26 12:46:35 -07004689 // 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 -07004690 // provided by the autofill service
4691 // Package: Package of app that is autofilled
4692 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004693 // Type TYPE_OPEN: The autofill save UI was restored
4694 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004695 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
4696 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4697
Felipe Leme9d414492017-09-20 13:55:28 -07004698 // Autofill service called API that disables itself
4699 // Package: Package of the autofill service
4700 // OS: O MR
4701 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4702
Felipe Lemeb659adb2018-01-18 15:21:36 -08004703 // Reports how long it took to show the autofill UI after a field was focused
4704 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004705 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4706 // Package: Package of the autofill service
4707 // OS: O MR
4708 AUTOFILL_UI_LATENCY = 1136;
4709
Chris Wren21a2e722017-10-02 17:44:53 -04004710 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4711 // OS: O MR
4712 NOTIFICATION_SNOOZE_CLICKED = 1137;
4713
4714 // Action: user selected a notification snooze duration from the drop down
4715 // OS: O MR
4716 NOTIFICATION_SELECT_SNOOZE = 1138;
4717
4718 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4719 // OS: O MR
4720 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4721
4722 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4723 // OS: O MR
4724 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4725
4726 // Action: user tapped undo on the notification snooze leave-behind
4727 // OS: O MR
4728 NOTIFICATION_UNDO_SNOOZE = 1141;
4729
4730 // Action: user togged the visibility of the notification snooze options drop down
4731 // OS: O MR
4732 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4733
Romain Guy62e8c172017-10-24 21:37:34 +01004734 // OPEN: Settings > Display > Colors
4735 // CATEGORY: SETTINGS
4736 // OS: O MR
4737 COLOR_MODE_SETTINGS = 1143;
4738
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004739 // Enclosing category for group of APP_TRANSITION_FOO events,
4740 // logged when we cancel an app transition.
4741 APP_TRANSITION_CANCELLED = 1144;
4742
Felipe Lemeb659adb2018-01-18 15:21:36 -08004743 // Tag of a field representing a duration on autofill-related metrics.
4744 FIELD_AUTOFILL_DURATION = 1145;
4745
Doris Lingce007eb2017-08-09 13:59:46 -07004746 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4747
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004748 // OPEN: Settings > Network & Internet > Mobile network
4749 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004750 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004751
4752 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4753 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004754 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004755
4756 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4757 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004758 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004759
4760 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4761 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004762 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004763
4764 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4765 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004766 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004767
4768 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4769 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004770 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004771
4772 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4773 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004774 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004775
4776 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4777 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004778 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004779
4780 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4781 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004782 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004783
4784 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4785 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004786 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004787
4788 // ACTION: Settings > Network & Internet > Mobile network > Network
4789 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004790 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004791
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004792 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004793 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004794
4795 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4796 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004797 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004798
4799 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4800 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004801 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004802
4803 // OPEN: Settings > Network & Internet > Mobile network > System select
4804 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004805 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004806
4807 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4808 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004809 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004810
4811 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4812 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004813 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004814
Fan Zhanga2f2c912017-08-15 17:20:37 -07004815 // OPEN: Settings > Developer Options > Experiment dashboard
4816 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004817 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004818
Julia Reynolds005c8b92017-08-24 10:35:53 -04004819 // OPEN: Settings > Notifications > [App] > Topic Notifications
4820 // CATEGORY: SETTINGS
4821 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004822 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004823
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004824 // OPEN: Settings > Developer options > Enable > Info dialog
4825 // CATEGORY: SETTINGS
4826 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004827 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004828
jeffreyhuang57359c02017-09-18 11:34:00 -07004829 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4830 // CATEGORY: SETTINGS
4831 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004832 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004833
Kevin Chyn60eea712017-09-26 16:03:05 -07004834 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4835 // CATEGORY: SETTINGS
4836 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004837 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004838
jeffreyhuang37c4b132017-09-21 14:09:20 -07004839 // OPEN: Settings > Developer options > USB debugging > Info dialog
4840 // CATEGORY: SETTINGS
4841 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004842 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004843
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004844 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4845 // CATEGORY: SETTINGS
4846 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004847 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004848
Fan Zhange5b34302017-10-09 15:58:38 -07004849 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004850 // CATEGORY: SETTINGS
4851 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004852 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4853
jeffreyhuang49de1252017-10-05 15:25:14 -07004854 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4855 // CATEGORY: SETTINGS
4856 // OS: P
4857 DIALOG_LOG_PERSIST = 1225;
4858
Beverly04216872017-09-28 10:55:32 -04004859 // ACTION: DND Settings > Priority only allows > Alarms toggle
4860 // SUBTYPE: 0 is off, 1 is on
4861 // CATEGORY: SETTINGS
4862 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004863 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004864
4865 // ACTION: DND Settings > Priority only allows > Media toggle
4866 // SUBTYPE: 0 is off, 1 is on
4867 // CATEGORY: SETTINGS
4868 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004869 ACTION_ZEN_ALLOW_MEDIA = 1227;
4870
4871 // An autofill service explicitly defined which view should commit the autofill context
4872 // Package: Package of app that is autofilled
4873 // OS: P
4874 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4875 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4876
4877 // The autofill context was commited when the user clicked a view explicitly marked by the
4878 // service as committing it
4879 // Package: Package of app that is autofilled
4880 // OS: P
4881 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004882
Malcolm Chen4f17b172017-10-19 13:54:07 -07004883 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4884 // CATEGORY: SETTINGS
4885 // OS: P
4886 WIFI_CALLING_FOR_SUB = 1230;
4887
Felipe Leme17292d12017-10-24 14:03:10 -07004888 // An autofill service asked to disable autofill for a given application.
4889 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004890 // OS: P
4891 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004892 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme17292d12017-10-24 14:03:10 -07004893 AUTOFILL_SERVICE_DISABLED_APP = 1231;
4894
4895 // An autofill service asked to disable autofill for a given activity.
4896 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004897 // OS: P
4898 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4899 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08004900 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme17292d12017-10-24 14:03:10 -07004901 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
4902
jackqdyuleide3b7af2017-10-24 16:32:58 -07004903 // ACTION: Stop an app and turn on background check
4904 // CATEGORY: SETTINGS
4905 // OS: P
4906 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
4907
4908 // FIELD: The action type for each anomaly
4909 // CATEGORY: SETTINGS
4910 // OS: P
4911 FIELD_ANOMALY_ACTION_TYPE = 1234;
4912
4913 // OPEN: Settings -> Battery -> Wakelock anomaly
4914 // CATEGORY: SETTINGS
4915 // OS: P
4916 ANOMALY_TYPE_WAKELOCK = 1235;
4917
4918 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
4919 // CATEGORY: SETTINGS
4920 // OS: P
4921 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
4922
4923 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
4924 // CATEGORY: SETTINGS
4925 // OS: P
4926 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
4927
Fan Zhanga4a01722017-10-30 17:54:24 -07004928 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
4929 // OS: P
4930 DIALOG_OEM_LOCK_INFO = 1238;
4931
jackqdyulei331fafb2017-11-01 14:01:24 -07004932 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
4933 // CATEGORY: SETTINGS
4934 // OS: P
4935 ACTION_WIFI_AUTO_SIGN_IN = 1239;
4936
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07004937 // Open: Settings > System > About phone > IMEI
4938 // CATEGORY: SETTINGS
4939 // OS: P
4940 DIALOG_IMEI_INFO = 1240;
4941
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07004942 // In permission action fields tagged like this reference the permission affected
4943 FIELD_PERMISSION = 1241;
4944
4945 // ACTION: An app requested a permission and we asked to user to approve the request
4946 // PACKAGE: The package name of the app requesting the permission
4947 // Tag FIELD_PERMISSION: Name of the permission requested
4948 ACTION_PERMISSION_REQUESTED = 1242;
4949
4950 // ACTION: An app was granted the a permission. This can happen after a user approved a request
4951 // or automatically. In the second case there will not be an
4952 // ACTION_PERMISSION_REQUESTED.
4953 // PACKAGE: The package name of the app that was granted the permission
4954 // Tag FIELD_PERMISSION: Name of the permission granted
4955 ACTION_PERMISSION_GRANTED = 1243;
4956
4957 // ACTION: An app requested the a permission and the request was denied by the user or a device
4958 // policy
4959 // PACKAGE: The package name of the app requesting the permission
4960 // Tag FIELD_PERMISSION: Name of the permission denied
4961 ACTION_PERMISSION_DENIED = 1244;
4962
4963 // ACTION: A permission was revoked
4964 // PACKAGE: The package name of the app the permission was revoked for
4965 // Tag FIELD_PERMISSION: Name of the permission revoked
4966 ACTION_PERMISSION_REVOKED = 1245;
4967
jeffreyhuang594314c2017-11-01 10:26:15 -07004968 // OPEN: Settings > System > About Phone > Sim status
4969 // CATEGORY: SETTINGS
4970 // OS: P
4971 DIALOG_SIM_STATUS = 1246;
4972
jeffreyhuang3bd59782017-11-02 11:08:28 -07004973 // OPEN: Settings > System > About Phone > Android Version
4974 // CATEGORY: SETTINGS
4975 // OS: P
4976 DIALOG_FIRMWARE_VERSION = 1247;
4977
jackqdyulei8fe97542017-11-08 16:23:43 -08004978 // OPEN: Settings > Network & internet > Menu > Private DNS
4979 // CATEGORY: SETTINGS
4980 // OS: P
4981 DIALOG_PRIVATE_DNS = 1248;
4982
4983 // ACTION: A private dns mode been selected by user
4984 // CATEGORY: SETTINGS
4985 // OS: P
4986 ACTION_PRIVATE_DNS_MODE = 1249;
4987
Jan Althausae5eb832017-11-06 12:31:59 +01004988 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
4989 // CATEGORY: TEXT_SELECTION_SESSION
4990 // OS: P
4991 FIELD_SELECTION_RANGE_START = 1250;
4992
4993 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
4994 // CATEGORY: TEXT_SELECTION_SESSION
4995 // OS: P
4996 FIELD_SELECTION_RANGE_END = 1251;
4997
4998 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4999 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5000 // CATEGORY: TEXT_SELECTION_SESSION
5001 // OS: P
5002 FIELD_SELECTION_SMART_RANGE_START = 1252;
5003
5004 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5005 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5006 // CATEGORY: TEXT_SELECTION_SESSION
5007 // OS: P
5008 FIELD_SELECTION_SMART_RANGE_END = 1253;
5009
5010 // FIELD: the entity type of the text currently selected.
5011 // CATEGORY: TEXT_SELECTION_SESSION
5012 // OS: P
5013 FIELD_SELECTION_ENTITY_TYPE = 1254;
5014
5015 // FIELD: the type of widget the selection was made in.
5016 // CATEGORY: TEXT_SELECTION_SESSION
5017 // OS: P
5018 FIELD_SELECTION_WIDGET_TYPE = 1255;
5019
5020 // FIELD: the name of the text classifier model used.
5021 // CATEGORY: TEXT_SELECTION_SESSION
5022 // OS: P
5023 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5024
Beverly625442d2017-11-03 17:27:02 -04005025 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5026 // CATEGORY: SETTINGS
5027 // OS: P
5028 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5029
5030 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5031 // CATEGORY: SETTINGS
5032 // OS: P
5033 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5034
5035 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5036 // CATEGORY: SETTINGS
5037 // OS: P
5038 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5039
5040 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5041 // CATEGORY: SETTINGS
5042 // OS: P
5043 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5044
5045 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5046 // CATEGORY: SETTINGS
5047 // OS: P
5048 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5049
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005050 // FIELD: the version of the widget the selection was made in.
5051 // CATEGORY: TEXT_SELECTION_SESSION
5052 // OS: P
5053 FIELD_SELECTION_WIDGET_VERSION = 1262;
5054
jackqdyulei63193602017-11-27 13:46:48 -08005055 // OPEN: Settings > Battery(version 2)
5056 // CATEGORY: SETTINGS
5057 // OS: P
5058 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5059
jackqdyulei6139eab2017-11-29 14:38:32 -08005060 // OPEN: Settings > Connected devices > Connection preferences
5061 // CATEGORY: SETTINGS
5062 // OS: P
5063 CONNECTION_DEVICE_ADVANCED = 1264;
5064
Fan Zhang5235c052017-12-05 13:49:35 -08005065 // OPEN: Settings > Security > Screen lock gear icon
5066 // CATEGORY: SETTINGS
5067 // OS: P
5068 SCREEN_LOCK_SETTINGS = 1265;
5069
Beverlybf16c142017-11-27 16:21:34 -05005070 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5071 // CATEGORY: SETTINGS
5072 // OS: P
5073 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005074
Beverlybf16c142017-11-27 16:21:34 -05005075 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5076 // CATEGORY: SETTINGS
5077 // OS: P
5078 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5079
5080 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5081 // CATEGORY: SETTINGS
5082 // OS: P
5083 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5084
5085 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5086 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5087 // CATEGORY: SETTINGS
5088 // OS: P
5089 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5090
5091 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5092 // CATEGORY: SETTINGS
5093 // OS: P
5094 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5095
Felipe Leme5e047202017-12-05 16:30:06 -08005096 // Tag of a field for the number of ids in an autofill field classification request.
5097 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5098
5099 // An autofill service updated its user data
5100 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005101 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5102 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005103 // OS: P
5104 AUTOFILL_USERDATA_UPDATED = 1272;
5105
5106 // Some data entered by the user matched the field classification requested by the service.
5107 // Package: Package of app that is autofilled
5108 // Counter: number of matches found
5109 // OS: P
5110 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5111 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
5112 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5113
5114 // Tag used to report autofill field classification scores
5115 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5116
Jerry Zhang18be8db2017-12-15 15:24:41 -08005117 // ACTION: Usb config has been changed to charging
5118 // CATEGORY: SETTINGS
5119 // OS: P
5120 ACTION_USB_CONFIG_CHARGING = 1275;
5121
5122 // ACTION: Usb config has been changed to mtp (file transfer)
5123 // CATEGORY: SETTINGS
5124 // OS: P
5125 ACTION_USB_CONFIG_MTP = 1276;
5126
5127 // ACTION: Usb config has been changed to ptp (photo transfer)
5128 // CATEGORY: SETTINGS
5129 // OS: P
5130 ACTION_USB_CONFIG_PTP = 1277;
5131
5132 // ACTION: Usb config has been changed to rndis (usb tethering)
5133 // CATEGORY: SETTINGS
5134 // OS: P
5135 ACTION_USB_CONFIG_RNDIS = 1278;
5136
5137 // ACTION: Usb config has been changed to midi
5138 // CATEGORY: SETTINGS
5139 // OS: P
5140 ACTION_USB_CONFIG_MIDI = 1279;
5141
5142 // ACTION: Usb config has been changed to accessory
5143 // CATEGORY: SETTINGS
5144 // OS: P
5145 ACTION_USB_CONFIG_ACCESSORY = 1280;
5146
jackqdyuleie04138d2018-01-08 17:51:57 -08005147 // OPEN: Settings > Battery > Smart Battery
5148 // CATEGORY: SETTINGS
5149 // OS: P
5150 FUELGAUGE_SMART_BATTERY = 1281;
5151
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005152 // ACTION: User tapped Screenshot in the power menu.
5153 // CATEGORY: GLOBAL_SYSTEM_UI
5154 // OS: P
5155 ACTION_SCREENSHOT_POWER_MENU = 1282;
5156
Felipe Leme3e099112018-01-18 12:57:45 -08005157 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005158 // CATEGORY: SETTINGS
5159 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005160 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005161
Felipe Leme3e099112018-01-18 12:57:45 -08005162 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005163 // CATEGORY: SETTINGS
5164 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005165 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005166
jackqdyuleid9821242018-01-09 17:42:52 -08005167 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5168 // CATEGORY: SETTINGS
5169 // OS: P
5170 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5171
Beverly92c25682018-01-22 09:27:19 -05005172 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5173 // CATEGORY: SETTINGS
5174 // OS: P
5175 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5176
Mike Digmanc94759d2018-01-23 11:01:21 -08005177 // ACTION: Rotate suggestion accepted in rotation locked mode
5178 // CATEGORY: GLOBAL_SYSTEM_UI
5179 // OS: P
5180 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5181
5182 // OPEN: Rotation suggestion shown in rotation locked mode
5183 // CATEGORY: GLOBAL_SYSTEM_UI
5184 // OS: P
5185 ROTATION_SUGGESTION_SHOWN = 1288;
5186
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005187 // An autofill service was bound using an unofficial(but still supported) permission.
5188 // Package: Package of the autofill service
5189 // OS: P
5190 AUTOFILL_INVALID_PERMISSION = 1289;
5191
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005192 // OPEN: QS Alarm tile shown
5193 // ACTION: QS Alarm tile tapped
5194 // SUBTYPE: 0 is off, 1 is on
5195 // CATEGORY: QUICK_SETTINGS
5196 // OS: P
5197 QS_ALARM = 1290;
5198
Jerry Zhang79147972018-01-31 16:04:06 -08005199 // OPEN: Settings->Connected Devices->USB->(click on details link)
5200 // CATEGORY: SETTINGS
5201 // OS: P
5202 USB_DEVICE_DETAILS = 1291;
5203
Michael Wright98bdc512018-01-26 19:15:57 +00005204 // OPEN: Settings > Accessibility > Vibration
5205 // CATEGORY: SETTINGS
5206 // OS: P
5207 ACCESSIBILITY_VIBRATION = 1292;
5208
5209 // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration
5210 // CATEGORY: SETTINGS
5211 // OS: P
5212 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5213
5214 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5215 // CATEGORY: SETTINGS
5216 // OS: P
5217 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5218
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005219 // OPEN: Volume panel > output chooser dialog
5220 // OS: P
5221 OUTPUT_CHOOSER = 1295;
5222
5223 // Action: Volume panel > output chooser dialog > tap on device
5224 // OS: P
5225 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5226
5227 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5228 // OS: P
5229 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5230
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005231 // OPEN: TV Settings > Home theater control
5232 // OS: P
5233 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5234
5235 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5236 // OS: P
5237 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5238
5239 // OPEN: TV Settings > Device
5240 // OS: P
5241 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5242
5243 // OPEN: TV Settings > Network > Proxy settings
5244 // OS: P
5245 DIALOG_TV_NETWORK_PROXY = 1301;
5246
Makoto Onuki698f7a02018-02-13 15:02:23 -08005247 // Events for battery saver turning on/off and/or the interactive state changes.
5248 // OS: P
5249 BATTERY_SAVER = 1302;
5250
5251 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5252 // OS: P
5253 FIELD_INTERACTIVE = 1303;
5254
5255 // Time spent in milliseconds in the current mode.
5256 // OS: P
5257 FIELD_DURATION_MILLIS = 1304;
5258
5259 // Battery level in uA (0 - ~3,000,000 depending on device) when the current "mode" started.
5260 // OS: P
5261 FIELD_START_BATTERY_UA = 1305;
5262
5263 // Battery level in uA (0 - ~3,000,000 depending on device) when this event was created.
5264 // OS: P
5265 FIELD_END_BATTERY_UA = 1306;
5266
5267 // Battery level in % (0-100) when the current "mode" started.
5268 // OS: P
5269 FIELD_START_BATTERY_PERCENT = 1307;
5270
5271 // Battery level in % (0-100) when this event was created.
5272 // OS: P
5273 FIELD_END_BATTERY_PERCENT = 1308;
5274
Christine Frankse257e452018-01-18 11:06:54 -08005275 // ACTION: Settings > Display > Night Light
5276 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5277 // CATEGORY: SETTINGS
5278 // OS: P
5279 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5280
5281 // ACTION: Settings > Display > Night Light
5282 // CATEGORY: SETTINGS
5283 // SUBTYPE: 0 is starting time, 1 is ending time
5284 // OS: P
5285 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5286
5287 // FIELD: Current mode corresponding to a QS tile
5288 // CATEGORY: QUICK SETTINGS
5289 // OS: P
5290 FIELD_QS_MODE = 1311;
5291
Calin Juravle759fbda2018-02-20 19:52:30 +00005292
Jerry Zhang92306d82018-02-12 18:12:41 -08005293 // OPEN: Settings->Developer Options->Default USB
5294 // CATEGORY: SETTINGS
5295 // OS: P
5296 USB_DEFAULT = 1312;
5297
Jan Althaus31efdc32018-02-19 22:23:13 +01005298 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5299 // OS: P
5300 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5301
5302 // FIELD: milliseconds spent generating links.
5303 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5304 // OS: P
5305 FIELD_LINKIFY_LATENCY = 1314;
5306
5307 // FIELD: length of the input text in characters.
5308 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5309 // OS: P
5310 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5311
5312 // FIELD: number of links detected.
5313 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5314 // OS: P
5315 FIELD_LINKIFY_NUM_LINKS = 1316;
5316
5317 // FIELD: length of all links in characters.
5318 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5319 // OS: P
5320 FIELD_LINKIFY_LINK_LENGTH = 1317;
5321
5322 // FIELD: the type of entity the stats are for.
5323 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5324 // OS: P
5325 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5326
5327 // FIELD: a random uid for a single call to generateLinks
5328 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5329 // OS: P
5330 FIELD_LINKIFY_CALL_ID = 1319;
5331
Calin Juravle759fbda2018-02-20 19:52:30 +00005332 // FIELD: The compiler filter used when when optimizing the package.
5333 // Logged together with app transition events.
5334 // OS: P
5335 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5336
5337 // FIELD: The reason for optimizing the package.
5338 // Logged together with app transition events.
5339 // OS: P
5340 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5341
Emilian Peev6bf0a552018-02-10 02:15:49 +00005342 // FIELD: The camera API level used.
5343 // CATEGORY: CAMERA
5344 // OS: P
5345 FIELD_CAMERA_API_LEVEL = 1322;
5346
jackqdyulei73e6b342018-02-26 14:44:50 -08005347 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5348 // CATEGORY: SETTINGS
5349 // OS: P
5350 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5351
jackqdyuleibb60ea22018-02-26 17:18:12 -08005352 // OPEN: Settings > Battery > Battery tip
5353 // CATEGORY: SETTINGS
5354 // OS: P
5355 ACTION_BATTERY_TIP_SHOWN = 1324;
5356
Maggieb9d76322018-02-16 18:00:30 -08005357 // OPEN: Settings > Security & Location > Location > See all
5358 // CATEGORY: SETTINGS
5359 // OS: P
5360 RECENT_LOCATION_REQUESTS_ALL = 1325;
5361
Evan Laird404a85c2018-02-28 15:31:29 -05005362 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5363 // CATEGORY: GLOBAL_SYSTEM_UI
5364 // OS: P
5365 FIELD_GESTURE_X_PERCENT = 1326;
5366
5367 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5368 // CATEGORY: GLOBAL_SYSTEM_UI
5369 // OS: P
5370 FIELD_GESTURE_Y_PERCENT = 1327;
5371
5372 // ACTION: Expand the notification panel while unlocked
5373 // CATEGORY: GLOBAL_SYSTEM_UI
5374 // OS: P
5375 ACTION_PANEL_VIEW_EXPAND = 1328;
5376
Evan Laird404a85c2018-02-28 15:31:29 -05005377 // FIELD: Rotation of the device
5378 // CATEGORY: GLOBAL_SYSTEM_UI
5379 // OS: P
5380 FIELD_DEVICE_ROTATION = 1329;
5381
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005382 // OPEN: TV Settings > Inputs > Input Options
5383 // CATEGORY: SETTINGS
5384 // OS: P
5385 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5386
5387 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5388 // CATEGORY: SETTINGS
5389 // OS: P
5390 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5391
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005392 // ACTION: DND Settings > What to block > full screen intents
5393 // SUBTYPE: false is allowed, true is blocked
5394 // CATEGORY: SETTINGS
5395 // OS: 6.0
5396 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5397
5398 // ACTION: DND Settings > What to block
5399 // SUBTYPE: false is allowed, true is blocked
5400 // OS: P
5401 ACTION_ZEN_BLOCK_LIGHT = 1333;
5402
5403 // ACTION: DND Settings > What to block
5404 // SUBTYPE: false is allowed, true is blocked
5405 // OS: P
5406 ACTION_ZEN_BLOCK_PEEK = 1334;
5407
5408 // ACTION: DND Settings > What to block
5409 // SUBTYPE: false is allowed, true is blocked
5410 // OS: P
5411 ACTION_ZEN_BLOCK_STATUS = 1335;
5412
5413 // ACTION: DND Settings > What to block
5414 // SUBTYPE: false is allowed, true is blocked
5415 // OS: P
5416 ACTION_ZEN_BLOCK_BADGE = 1336;
5417
5418 // ACTION: DND Settings > What to block
5419 // SUBTYPE: false is allowed, true is blocked
5420 // OS: P
5421 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5422
5423 // ACTION: DND Settings > What to block
5424 // SUBTYPE: false is allowed, true is blocked
5425 // OS: P
5426 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5427
5428 // OPEN: DND Settings > What to block
5429 // OS: P
5430 ZEN_WHAT_TO_BLOCK = 1339;
5431
Beverly8fe33ba2018-03-05 14:32:35 -05005432 // ACTION: DND Settings > Priority only allows > System toggle
5433 // SUBTYPE: 0 is off, 1 is on
5434 // CATEGORY: SETTINGS
5435 // OS: P
5436 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5437
5438 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5439 // CATEGORY: SETTINGS
5440 // OS: P
5441 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5442
5443 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5444 // CATEGORY: SETTINGS
5445 // OS: P
5446 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5447
5448 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5449 // CATEGORY: SETTINGS
5450 // OS: P
5451 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5452
5453 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5454 // CATEGORY: SETTINGS
5455 // OS: P
5456 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5457
Julia Reynolds8dff1862018-03-06 14:20:40 -05005458 // Notification Guts, active app ops variant
5459 // OS: P
5460 APP_OPS_GUTS = 1345;
5461
5462 // ACTION: Notification Guts, active app ops variant > Settings button
5463 // OS: P
5464 ACTION_OPS_GUTS_SETTINGS = 1346;
5465
Lei Yu5674d2d2018-03-08 10:19:43 -08005466 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5467 // OS: P
5468 ACTION_APP_RESTRICTION_TIP = 1347;
5469
5470 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5471 // OS: P
5472 ACTION_HIGH_USAGE_TIP = 1348;
5473
Lei Yue93e5602018-03-08 12:15:38 -08005474 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5475 // OS: P
5476 ACTION_SUMMARY_TIP = 1349;
5477
5478 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5479 // OS: P
5480 ACTION_SMART_BATTERY_TIP = 1350;
5481
5482 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5483 // OS: P
5484 ACTION_EARLY_WARNING_TIP = 1351;
5485
5486 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5487 // OS: P
5488 ACTION_LOW_BATTERY_TIP = 1352;
5489
5490 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5491 // OS: P
5492 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5493
5494 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5495 // OS: P
5496 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5497
Victor Chang76817b82018-03-09 17:22:52 +00005498 // OPEN: Settings > Date & time > Select time zone -> Region
5499 // CATEGORY: SETTINGS
5500 // OS: P
5501 SETTINGS_ZONE_PICKER_REGION = 1355;
5502
5503 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5504 // CATEGORY: SETTINGS
5505 // OS: P
5506 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5507
5508 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5509 // CATEGORY: SETTINGS
5510 // OS: P
5511 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5512
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005513 // Action: notification shade > manage notifications
5514 // OS: P
5515 ACTION_MANAGE_NOTIFICATIONS = 1358;
5516
Chris Wrenaa571c62018-03-14 12:16:04 -04005517 // This value should never appear in log outputs - it is reserved for
5518 // internal platform metrics use.
5519 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5520
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005521 // OPEN: Settings > Gestures > Prevent Ringing
5522 // OS: P
5523 SETTINGS_PREVENT_RINGING = 1360;
5524
Lei Yue92285a2018-03-12 11:28:40 -07005525 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5526 // CATEGORY: SETTINGS
5527 // OS: P
5528 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5529
5530 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5531 // CATEGORY: SETTINGS
5532 // OS: P
5533 ACTION_TIP_RESTRICT_APP = 1362;
5534
5535 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5536 // CATEGORY: SETTINGS
5537 // OS: P
5538 ACTION_TIP_UNRESTRICT_APP = 1363;
5539
5540 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5541 // CATEGORY: SETTINGS
5542 // OS: P
5543 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5544
5545 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5546 // CATEGORY: SETTINGS
5547 // OS: P
5548 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5549
5550 // FIELD: type of anomaly in settings app
5551 // CATEGORY: SETTINGS
5552 // OS: P
5553 FIELD_ANOMALY_TYPE = 1366;
5554
Lei Yu4f704772018-03-20 10:51:58 -07005555 // ACTION: Settings > Anomaly receiver > Anomaly received
5556 // CATEGORY: SETTINGS
5557 // OS: P
5558 ACTION_ANOMALY_TRIGGERED = 1367;
5559
Fan Zhanga85b4872018-03-26 16:52:53 -07005560 // ACTION: Settings > Condition > Device muted
5561 // CATEGORY: SETTINGS
5562 // OS: P
5563 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5564
5565 // ACTION: Settings > Condition > Device vibrate
5566 // CATEGORY: SETTINGS
5567 // OS: P
5568 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5569
hughchen226196b2018-03-27 12:04:59 +08005570 // OPEN: Settings > Connected devices > previously connected devices
5571 // CATEGORY: SETTINGS
5572 // OS: P
5573 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005574
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005575 // ACTION: A Settings Slice is requested
5576 // CATEGORY: SETTINGS
5577 // OS: P
5578 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5579
5580 // ACTION: A Settings Slice is updated with new value
5581 // CATEGORY: SETTINGS
5582 // OS: P
5583 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5584
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005585 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5586 // note: Wifi Scanning must be off for this dialog to show
5587 // CATEGORY: SETTINGS
5588 // OS: P
5589 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5590
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005591 // OPEN: Settings > System > Gestures > Swipe up gesture
5592 // CATEGORY: SETTINGS
5593 // OS: P
5594 SETTINGS_GESTURE_SWIPE_UP = 1374;
5595
Jeff Sharkey46270712018-04-02 09:53:21 -06005596 // OPEN: Settings > Storage > Dialog to format a storage volume
5597 // CATEGORY: SETTINGS
5598 // OS: P
5599 DIALOG_VOLUME_FORMAT = 1375;
5600
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005601 // OPEN: DND onboarding activity > screen on checkbox
5602 // CATEGORY: SETTINGS
5603 // OS: P
5604 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5605
5606 // OPEN: DND onboarding activity > screen off checkbox
5607 // CATEGORY: SETTINGS
5608 // OS: P
5609 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5610
5611 // OPEN: DND onboarding activity > Ok button
5612 // CATEGORY: SETTINGS
5613 // OS: P
5614 ACTION_ZEN_ONBOARDING_OK = 1378;
5615
5616 // OPEN: DND onboarding activity > Settings link
5617 // CATEGORY: SETTINGS
5618 // OS: P
5619 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5620
5621 // OPEN: DND onboarding activity
5622 // CATEGORY: SETTINGS
5623 // OS: P
5624 SETTINGS_ZEN_ONBOARDING = 1380;
5625
Fan Zhangd2ed8212018-04-10 12:57:56 -07005626 // OPEN: Settings > Display > Auto brightness
5627 // CATEGORY: SETTINGS
5628 // OS: P
5629 SETTINGS_AUTO_BRIGHTNESS = 1381;
5630
Kenny Guy23991102018-04-05 21:18:38 +01005631 // OPEN: Smart replies in a notification seen at least once
5632 // CATEGORY: NOTIFICATION
5633 // PACKAGE: App that posted the notification
5634 // SUBTYPE: Number of smart replies.
5635 // OS: P
5636 SMART_REPLY_VISIBLE = 1382;
5637
5638 // ACTION: Smart reply in a notification clicked.
5639 // CATEGORY: NOTIFICATION
5640 // PACKAGE: App that posted the notification
5641 // SUBTYPE: Index of smart reply clicked.
5642 // OS: P
5643 SMART_REPLY_ACTION = 1383;
5644
5645 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5646 // OS: P
5647 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5648
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005649 // Volume dialog > ringer toggle
5650 // OS: P
5651 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5652
5653 // Volume dialog > settings button
5654 // OS: P
5655 ACTION_VOLUME_SETTINGS = 1386;
5656
Lei Yufc59a572018-04-10 10:52:08 -07005657 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5658 // CATEGORY: SETTINGS
5659 // OS: P
5660 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005661
Lei Yu97a13212018-04-11 15:45:31 -07005662 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5663 // CATEGORY: SETTINGS
5664 // OS: P
5665 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5666
5667 // FIELD: the version code of an app
5668 // CATEGORY: SETTINGS
5669 // OS: P
5670 FIELD_APP_VERSION_CODE = 1389;
5671
Salvador Martinez7a9564f2018-04-04 14:42:59 -07005672 // OPEN: Settings > Connected Devices > Bluetooth
5673 // CATEGORY: SETTINGS
5674 // OS: P
5675 BLUETOOTH_FRAGMENT = 1390;
5676
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005677 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5678 // an app uses a hidden API.
5679 ACTION_HIDDEN_API_ACCESSED = 1391;
5680
5681 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5682 // access; see enum HiddenApiAccessMethod
5683 // OS: P
5684 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5685
5686 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5687 // denied to the API.
5688 // OS: P
5689 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5690
5691 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5692 // API that was accessed.
5693 // OS: P
5694 FIELD_HIDDEN_API_SIGNATURE = 1394;
5695
Dieter Hsud39f0d52018-04-14 02:08:30 +08005696 // This value should never appear in log outputs - it is reserved for
5697 // internal platform metrics use.
5698 NOTIFICATION_SHADE_COUNT = 1395;
5699
Julia Reynolds5da746a2018-04-23 09:41:21 -04005700 // ACTION: DND Settings > What to block
5701 // OS: P
5702 ACTION_ZEN_SOUND_ONLY = 1396;
5703
5704 // ACTION: DND Settings > Notifications
5705 // OS: P
5706 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5707
5708 // ACTION: DND Settings > Notifications
5709 // OS: P
5710 ACTION_ZEN_SHOW_CUSTOM = 1398;
5711
5712 // ACTION: DND Settings > Notifications
5713 // OS: P
5714 ACTION_ZEN_CUSTOM = 1399;
5715
5716 // Screen: DND Settings > Notifications
5717 // OS: P
5718 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5719
Chris Wrend63dffd2018-04-19 11:12:46 -04005720 // An event category for slices.
5721 // OPEN: Slice became visible.
5722 // CLOSE: Slice became invisible.
5723 // ACTION: Slice was tapped.
5724 SLICE = 1401;
5725
5726 // The authority part of the slice URI
5727 FIELD_SLICE_AUTHORITY = 1402;
5728
5729 // The path part of the slice URI
5730 FIELD_SLICE_PATH = 1403;
5731
5732 // The authority part of the subslice URI
5733 FIELD_SUBSLICE_AUTHORITY = 1404;
5734
5735 // The path part of the subslice URI
5736 FIELD_SUBSLICE_PATH = 1405;
5737
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005738 // OPEN: DND onboarding activity > don't update button
5739 // CATEGORY: SETTINGS
5740 // OS: P
5741 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5742
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005743 // ACTION: Storage initialization wizard initialization choice of external/portable
5744 // CATEGORY: SETTINGS
5745 // OS: P
5746 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5747
5748 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5749 // CATEGORY: SETTINGS
5750 // OS: P
5751 ACTION_STORAGE_INIT_INTERNAL = 1408;
5752
5753 // ACTION: Storage initialization wizard benchmark fast choice of continue
5754 // CATEGORY: SETTINGS
5755 // OS: P
5756 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5757
5758 // ACTION: Storage initialization wizard benchmark slow choice of continue
5759 // CATEGORY: SETTINGS
5760 // OS: P
5761 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5762
5763 // ACTION: Storage initialization wizard benchmark slow choice of abort
5764 // CATEGORY: SETTINGS
5765 // OS: P
5766 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5767
5768 // ACTION: Storage initialization wizard migration choice of now
5769 // CATEGORY: SETTINGS
5770 // OS: P
5771 ACTION_STORAGE_MIGRATE_NOW = 1412;
5772
5773 // ACTION: Storage initialization wizard migration choice of later
5774 // CATEGORY: SETTINGS
5775 // OS: P
5776 ACTION_STORAGE_MIGRATE_LATER = 1413;
5777
Beverlybf16c142017-11-27 16:21:34 -05005778 // ---- End P Constants, all P constants go above this line ----
Adrian Roos159ef7b2016-02-25 11:58:32 -08005779 // Add new aosp constants above this line.
5780 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05005781 }
5782}