Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1 | // 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 | |
| 15 | syntax = "proto2"; |
| 16 | |
| 17 | option java_package = "com.android.internal.logging"; |
| 18 | option java_outer_classname = "MetricsProto"; |
| 19 | |
| 20 | package com_android_internal_logging; |
| 21 | |
| 22 | // Wrapper for System UI log events |
| 23 | message MetricsEvent { |
| 24 | |
Chris Wren | 5e334f6 | 2016-11-14 10:16:21 -0500 | [diff] [blame] | 25 | // 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 Wren | f734271 | 2017-09-14 10:55:55 -0400 | [diff] [blame] | 36 | // The view switched to detail mode (most relevant for quick settings tiles and notifications) |
Chris Wren | 5e334f6 | 2016-11-14 10:16:21 -0500 | [diff] [blame] | 37 | TYPE_DETAIL = 3; |
| 38 | |
| 39 | // The view or control was activated. |
| 40 | TYPE_ACTION = 4; |
| 41 | |
| 42 | // The view or control was dismissed. |
| 43 | TYPE_DISMISS = 5; |
Julia Reynolds | 520df6e | 2017-02-13 09:05:10 -0500 | [diff] [blame] | 44 | |
| 45 | // The view or control was updated. |
| 46 | TYPE_UPDATE = 6; |
Jorim Jaggi | 3878ca3 | 2017-02-02 17:13:05 -0800 | [diff] [blame] | 47 | |
Chris Wren | 65f07fe | 2017-03-14 14:10:37 -0400 | [diff] [blame] | 48 | // Type for APP_TRANSITION event: The transition started a new |
| 49 | // activity for which it's process wasn't running. |
Jorim Jaggi | 3878ca3 | 2017-02-02 17:13:05 -0800 | [diff] [blame] | 50 | TYPE_TRANSITION_COLD_LAUNCH = 7; |
| 51 | |
Chris Wren | 65f07fe | 2017-03-14 14:10:37 -0400 | [diff] [blame] | 52 | // Type for APP_TRANSITION event: The transition started a new |
| 53 | // activity for which it's process was already running. |
Jorim Jaggi | 3878ca3 | 2017-02-02 17:13:05 -0800 | [diff] [blame] | 54 | TYPE_TRANSITION_WARM_LAUNCH = 8; |
| 55 | |
Chris Wren | 65f07fe | 2017-03-14 14:10:37 -0400 | [diff] [blame] | 56 | // Type for APP_TRANSITION event: The transition brought an |
| 57 | // already existing activity to the front. |
Jorim Jaggi | 3878ca3 | 2017-02-02 17:13:05 -0800 | [diff] [blame] | 58 | TYPE_TRANSITION_HOT_LAUNCH = 9; |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 59 | |
| 60 | // The action was successful |
| 61 | TYPE_SUCCESS = 10; |
| 62 | |
| 63 | // The action failed |
| 64 | TYPE_FAILURE = 11; |
Jorim Jaggi | 4d27b84 | 2017-08-17 17:22:26 +0200 | [diff] [blame] | 65 | |
| 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 Wren | f734271 | 2017-09-14 10:55:55 -0400 | [diff] [blame] | 73 | |
| 74 | // The view switched to summary mode (most relevant for notifications) |
| 75 | TYPE_COLLAPSE = 14; |
Chris Wren | 5e334f6 | 2016-11-14 10:16:21 -0500 | [diff] [blame] | 76 | } |
| 77 | |
Chris Wren | 65f07fe | 2017-03-14 14:10:37 -0400 | [diff] [blame] | 78 | // 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 Talvala | 31ad8a3 | 2017-07-10 16:23:50 -0700 | [diff] [blame] | 152 | // 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 Althaus | 786a39d | 2017-09-15 10:41:16 +0200 | [diff] [blame] | 164 | // 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 Althaus | ae5eb83 | 2017-11-06 12:31:59 +0100 | [diff] [blame] | 174 | // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events. |
| 175 | enum TextSelectionInvocationMethod { |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 176 | TEXT_SELECTION_INVOCATION_UNKNOWN = 0; |
Jan Althaus | ae5eb83 | 2017-11-06 12:31:59 +0100 | [diff] [blame] | 177 | TEXT_SELECTION_INVOCATION_MANUAL = 1; |
| 178 | TEXT_SELECTION_INVOCATION_LINK = 2; |
| 179 | } |
| 180 | |
Mathew Inwood | ac1c19a | 2018-04-12 12:17:57 +0100 | [diff] [blame] | 181 | // 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 | |
Andrew Chant | ecdc0dc | 2018-05-10 14:16:07 -0700 | [diff] [blame^] | 191 | enum HardwareType { |
| 192 | HARDWARE_UNKNOWN = 0; |
| 193 | HARDWARE_MICROPHONE = 1; |
| 194 | HARDWARE_CODEC = 2; |
| 195 | HARDWARE_SPEAKER = 3; |
| 196 | HARDWARE_FINGERPRINT = 4; |
| 197 | } |
| 198 | |
| 199 | enum HardwareFailureCode { |
| 200 | HARDWARE_FAILURE_UNKNOWN = 0; |
| 201 | HARDWARE_FAILURE_COMPLETE = 1; |
| 202 | HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2; |
| 203 | HARDWARE_FAILURE_SPEAKER_SHORT = 3; |
| 204 | HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4; |
| 205 | HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5; |
| 206 | } |
| 207 | |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 208 | // Known visual elements: views or controls. |
| 209 | enum View { |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 210 | // Unknown view |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 211 | VIEW_UNKNOWN = 0; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 212 | |
| 213 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 214 | MAIN_SETTINGS = 1; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 215 | |
| 216 | // OPEN: Settings > Accessibility |
| 217 | // CATEGORY: SETTINGS |
| 218 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 219 | ACCESSIBILITY = 2; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 220 | |
| 221 | // OPEN: Settings > Accessibility > Captions |
| 222 | // CATEGORY: SETTINGS |
| 223 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 224 | ACCESSIBILITY_CAPTION_PROPERTIES = 3; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 225 | |
| 226 | // OPEN: Settings > Accessibility > [Service] |
| 227 | // CATEGORY: SETTINGS |
| 228 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 229 | ACCESSIBILITY_SERVICE = 4; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 230 | |
| 231 | // OPEN: Settings > Accessibility > Color correction |
| 232 | // CATEGORY: SETTINGS |
| 233 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 234 | ACCESSIBILITY_TOGGLE_DALTONIZER = 5; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 235 | |
| 236 | // OPEN: Settings > Accessibility > Accessibility shortcut |
| 237 | // CATEGORY: SETTINGS |
| 238 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 239 | ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 240 | |
Casey Burkhardt | f4e9803 | 2017-03-22 22:52:24 -0700 | [diff] [blame] | 241 | // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O) |
| 242 | // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap |
| 243 | // OPEN: Settings > Accessibility > Magnification > Magnify with button |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 244 | // CATEGORY: SETTINGS |
| 245 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 246 | ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 247 | |
| 248 | // OPEN: Settings > Accounts |
| 249 | // CATEGORY: SETTINGS |
| 250 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 251 | ACCOUNT = 8; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 252 | |
| 253 | // OPEN: Settings > Accounts > [Single Account Sync Settings] |
| 254 | // CATEGORY: SETTINGS |
| 255 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 256 | ACCOUNTS_ACCOUNT_SYNC = 9; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 257 | |
| 258 | // OPEN: Settings > Accounts > Add an account |
| 259 | // CATEGORY: SETTINGS |
| 260 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 261 | ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 262 | |
| 263 | // OPEN: Settings > Accounts > [List of accounts when more than one] |
| 264 | // CATEGORY: SETTINGS |
| 265 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 266 | ACCOUNTS_MANAGE_ACCOUNTS = 11; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 267 | |
| 268 | // OPEN: Settings > Cellular network settings > APNs |
| 269 | // CATEGORY: SETTINGS |
| 270 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 271 | APN = 12; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 272 | |
| 273 | // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN] |
| 274 | // CATEGORY: SETTINGS |
| 275 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 276 | APN_EDITOR = 13; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 277 | |
| 278 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 279 | APP_OPS_DETAILS = 14; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 280 | |
| 281 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 282 | APP_OPS_SUMMARY = 15; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 283 | |
| 284 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 285 | APPLICATION = 16; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 286 | |
| 287 | // OPEN: Settings > Apps > Configure apps > App links > [App] |
| 288 | // CATEGORY: SETTINGS |
| 289 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 290 | APPLICATIONS_APP_LAUNCH = 17; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 291 | |
| 292 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 293 | APPLICATIONS_APP_PERMISSION = 18; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 294 | |
| 295 | // OPEN: Settings > Internal storage > Apps storage > [App] |
| 296 | // CATEGORY: SETTINGS |
| 297 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 298 | APPLICATIONS_APP_STORAGE = 19; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 299 | |
| 300 | // OPEN: Settings > Apps > [App info] |
| 301 | // CATEGORY: SETTINGS |
| 302 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 303 | APPLICATIONS_INSTALLED_APP_DETAILS = 20; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 304 | |
| 305 | // OPEN: Settings > Memory > App usage > [App Memory usage] |
| 306 | // CATEGORY: SETTINGS |
| 307 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 308 | APPLICATIONS_PROCESS_STATS_DETAIL = 21; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 309 | |
| 310 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 311 | APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 312 | |
| 313 | // OPEN: Settings > Memory > App usage |
| 314 | // CATEGORY: SETTINGS |
| 315 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 316 | APPLICATIONS_PROCESS_STATS_UI = 23; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 317 | |
| 318 | // OPEN: Settings > Bluetooth |
| 319 | // CATEGORY: SETTINGS |
| 320 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 321 | BLUETOOTH = 24; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 322 | |
| 323 | // OPEN: Choose Bluetooth device (ex: when sharing) |
| 324 | // CATEGORY: SETTINGS |
| 325 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 326 | BLUETOOTH_DEVICE_PICKER = 25; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 327 | |
| 328 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 329 | BLUETOOTH_DEVICE_PROFILES = 26; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 330 | |
| 331 | // OPEN: Settings > Security > Choose screen lock |
| 332 | // CATEGORY: SETTINGS |
| 333 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 334 | CHOOSE_LOCK_GENERIC = 27; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 335 | |
| 336 | // OPEN: Settings > Security > Choose screen lock > Choose your password |
| 337 | // CATEGORY: SETTINGS |
| 338 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 339 | CHOOSE_LOCK_PASSWORD = 28; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 340 | |
| 341 | // OPEN: Settings > Security > Choose screen lock > Choose your pattern |
| 342 | // CATEGORY: SETTINGS |
| 343 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 344 | CHOOSE_LOCK_PATTERN = 29; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 345 | |
| 346 | // OPEN: Settings > Security > Choose screen lock > Confirm your password |
| 347 | // CATEGORY: SETTINGS |
| 348 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 349 | CONFIRM_LOCK_PASSWORD = 30; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 350 | |
| 351 | // OPEN: Settings > Security > Choose screen lock > Confirm your pattern |
| 352 | // CATEGORY: SETTINGS |
| 353 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 354 | CONFIRM_LOCK_PATTERN = 31; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 355 | |
| 356 | // OPEN: Settings > Security > Encrypt phone |
| 357 | // CATEGORY: SETTINGS |
| 358 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 359 | CRYPT_KEEPER = 32; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 360 | |
| 361 | // OPEN: Settings > Security > Encrypt phone > Confirm |
| 362 | // CATEGORY: SETTINGS |
| 363 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 364 | CRYPT_KEEPER_CONFIRM = 33; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 365 | |
| 366 | // OPEN: Settings > Search results |
| 367 | // CATEGORY: SETTINGS |
| 368 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 369 | DASHBOARD_SEARCH_RESULTS = 34; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 370 | |
| 371 | // OPEN: Settings (Root page) |
| 372 | // CATEGORY: SETTINGS |
| 373 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 374 | DASHBOARD_SUMMARY = 35; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 375 | |
| 376 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 377 | DATA_USAGE = 36; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 378 | |
| 379 | // OPEN: Settings > Data usage |
| 380 | // CATEGORY: SETTINGS |
| 381 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 382 | DATA_USAGE_SUMMARY = 37; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 383 | |
| 384 | // OPEN: Settings > Date & time |
| 385 | // CATEGORY: SETTINGS |
| 386 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 387 | DATE_TIME = 38; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 388 | |
| 389 | // OPEN: Settings > Developer options |
| 390 | // CATEGORY: SETTINGS |
| 391 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 392 | DEVELOPMENT = 39; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 393 | |
| 394 | // OPEN: Settings > About phone |
| 395 | // CATEGORY: SETTINGS |
| 396 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 397 | DEVICEINFO = 40; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 398 | |
| 399 | // OPEN: Settings > About phone > Status > IMEI information |
| 400 | // CATEGORY: SETTINGS |
| 401 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 402 | DEVICEINFO_IMEI_INFORMATION = 41; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 403 | |
| 404 | // OPEN: Settings > Internal storage |
| 405 | // CATEGORY: SETTINGS |
| 406 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 407 | DEVICEINFO_STORAGE = 42; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 408 | |
| 409 | // OPEN: Settings > About phone > Status > SIM status |
| 410 | // CATEGORY: SETTINGS |
| 411 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 412 | DEVICEINFO_SIM_STATUS = 43; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 413 | |
| 414 | // OPEN: Settings > About phone > Status |
| 415 | // CATEGORY: SETTINGS |
| 416 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 417 | DEVICEINFO_STATUS = 44; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 418 | |
| 419 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 420 | DEVICEINFO_USB = 45; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 421 | |
| 422 | // OPEN: Settings > Display |
| 423 | // CATEGORY: SETTINGS |
| 424 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 425 | DISPLAY = 46; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 426 | |
| 427 | // OPEN: Settings > Display > Daydream |
| 428 | // CATEGORY: SETTINGS |
| 429 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 430 | DREAM = 47; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 431 | |
| 432 | // OPEN: Settings > Security > Screen lock > Secure start-up |
| 433 | // CATEGORY: SETTINGS |
| 434 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 435 | ENCRYPTION = 48; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 436 | |
| 437 | // OPEN: Settings > Security > Nexus Imprint |
| 438 | // CATEGORY: SETTINGS |
| 439 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 440 | FINGERPRINT = 49; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 441 | |
| 442 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 443 | FINGERPRINT_ENROLL = 50; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 444 | |
| 445 | // OPEN: Settings > Battery > History details |
| 446 | // CATEGORY: SETTINGS |
| 447 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 448 | FUELGAUGE_BATTERY_HISTORY_DETAIL = 51; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 449 | |
| 450 | // OPEN: Settings > Battery > Battery saver |
| 451 | // CATEGORY: SETTINGS |
| 452 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 453 | FUELGAUGE_BATTERY_SAVER = 52; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 454 | |
| 455 | // OPEN: Settings > Battery > [App Use details] |
| 456 | // CATEGORY: SETTINGS |
| 457 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 458 | FUELGAUGE_POWER_USAGE_DETAIL = 53; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 459 | |
| 460 | // OPEN: Settings > Battery |
| 461 | // CATEGORY: SETTINGS |
| 462 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 463 | FUELGAUGE_POWER_USAGE_SUMMARY = 54; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 464 | |
| 465 | // OPEN: Settings > Home |
| 466 | // CATEGORY: SETTINGS |
| 467 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 468 | HOME = 55; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 469 | |
| 470 | // OPEN: Settings > Security > SIM card lock settings |
| 471 | // CATEGORY: SETTINGS |
| 472 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 473 | ICC_LOCK = 56; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 474 | |
| 475 | // OPEN: Settings > Language & input |
| 476 | // CATEGORY: SETTINGS |
| 477 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 478 | INPUTMETHOD_LANGUAGE = 57; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 479 | |
| 480 | // OPEN: Settings > Language & input > Physical keyboard |
| 481 | // CATEGORY: SETTINGS |
| 482 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 483 | INPUTMETHOD_KEYBOARD = 58; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 484 | |
| 485 | // OPEN: Settings > Language & input > Spell checker |
| 486 | // CATEGORY: SETTINGS |
| 487 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 488 | INPUTMETHOD_SPELL_CHECKERS = 59; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 489 | |
| 490 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 491 | INPUTMETHOD_SUBTYPE_ENABLER = 60; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 492 | |
| 493 | // OPEN: Settings > Language & input > Personal dictionary |
| 494 | // CATEGORY: SETTINGS |
| 495 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 496 | INPUTMETHOD_USER_DICTIONARY = 61; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 497 | |
| 498 | // OPEN: Settings > Language & input > Add word |
| 499 | // CATEGORY: SETTINGS |
| 500 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 501 | INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 502 | |
| 503 | // OPEN: Settings > Location |
| 504 | // CATEGORY: SETTINGS |
| 505 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 506 | LOCATION = 63; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 507 | |
| 508 | // OPEN: Settings > Location > Location mode |
| 509 | // CATEGORY: SETTINGS |
| 510 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 511 | LOCATION_MODE = 64; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 512 | |
| 513 | // OPEN: Settings > Apps |
| 514 | // CATEGORY: SETTINGS |
| 515 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 516 | MANAGE_APPLICATIONS = 65; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 517 | |
| 518 | // OPEN: Settings > Backup & reset > Factory data reset |
| 519 | // CATEGORY: SETTINGS |
| 520 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 521 | MASTER_CLEAR = 66; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 522 | |
| 523 | // OPEN: Settings > Backup & reset > Factory data reset > Confirm |
| 524 | // CATEGORY: SETTINGS |
| 525 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 526 | MASTER_CLEAR_CONFIRM = 67; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 527 | |
| 528 | // OPEN: Settings > Data usage > Network restrictions |
| 529 | // CATEGORY: SETTINGS |
| 530 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 531 | NET_DATA_USAGE_METERED = 68; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 532 | |
| 533 | // OPEN: Settings > More > Android Beam |
| 534 | // CATEGORY: SETTINGS |
| 535 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 536 | NFC_BEAM = 69; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 537 | |
| 538 | // OPEN: Settings > Tap & pay |
| 539 | // CATEGORY: SETTINGS |
| 540 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 541 | NFC_PAYMENT = 70; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 542 | |
| 543 | // OPEN: Settings > Sound & notification |
| 544 | // CATEGORY: SETTINGS |
| 545 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 546 | NOTIFICATION = 71; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 547 | |
| 548 | // OPEN: Settings > Sound & notification > App notifications > [App] |
| 549 | // CATEGORY: SETTINGS |
| 550 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 551 | NOTIFICATION_APP_NOTIFICATION = 72; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 552 | |
| 553 | // OPEN: Settings > Sound & notification > Other sounds |
| 554 | // CATEGORY: SETTINGS |
| 555 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 556 | NOTIFICATION_OTHER_SOUND = 73; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 557 | |
| 558 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 559 | NOTIFICATION_REDACTION = 74; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 560 | |
| 561 | // OPEN: Settings Widget > Notification log |
| 562 | // CATEGORY: SETTINGS |
| 563 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 564 | NOTIFICATION_STATION = 75; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 565 | |
| 566 | // OPEN: Settings > Sound & notification > Do not disturb |
| 567 | // CATEGORY: SETTINGS |
| 568 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 569 | NOTIFICATION_ZEN_MODE = 76; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 570 | |
| 571 | // OPEN: OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 572 | OWNER_INFO = 77; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 573 | |
| 574 | // OPEN: Print job notification > Print job settings |
| 575 | // CATEGORY: SETTINGS |
| 576 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 577 | PRINT_JOB_SETTINGS = 78; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 578 | |
| 579 | // OPEN: Settings > Printing > [Print Service] |
| 580 | // CATEGORY: SETTINGS |
| 581 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 582 | PRINT_SERVICE_SETTINGS = 79; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 583 | |
| 584 | // OPEN: Settings > Printing |
| 585 | // CATEGORY: SETTINGS |
| 586 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 587 | PRINT_SETTINGS = 80; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 588 | |
| 589 | // OPEN: Settings > Backup & reset |
| 590 | // CATEGORY: SETTINGS |
| 591 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 592 | PRIVACY = 81; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 593 | |
| 594 | //OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 595 | PROXY_SELECTOR = 82; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 596 | |
| 597 | // OPEN: Settings > Backup & reset > Network settings reset |
| 598 | // CATEGORY: SETTINGS |
| 599 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 600 | RESET_NETWORK = 83; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 601 | |
| 602 | // OPEN: Settings > Backup & reset > Network settings reset > Confirm |
| 603 | // CATEGORY: SETTINGS |
| 604 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 605 | RESET_NETWORK_CONFIRM = 84; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 606 | |
| 607 | // OPEN: Settings > Developer Options > Running Services |
| 608 | // CATEGORY: SETTINGS |
| 609 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 610 | RUNNING_SERVICE_DETAILS = 85; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 611 | |
| 612 | // OPEN: Settings > Security > Screen pinning |
| 613 | // CATEGORY: SETTINGS |
| 614 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 615 | SCREEN_PINNING = 86; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 616 | |
| 617 | // OPEN: Settings > Security |
| 618 | // CATEGORY: SETTINGS |
| 619 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 620 | SECURITY = 87; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 621 | |
| 622 | // OPEN: Settings > SIM cards |
| 623 | // CATEGORY: SETTINGS |
| 624 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 625 | SIM = 88; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 626 | |
| 627 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 628 | TESTING = 89; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 629 | |
| 630 | // OPEN: Settings > More > Tethering & portable hotspot |
| 631 | // CATEGORY: SETTINGS |
| 632 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 633 | TETHER = 90; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 634 | |
| 635 | // OPEN: Settings > Security > Trust agents |
| 636 | // CATEGORY: SETTINGS |
| 637 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 638 | TRUST_AGENT = 91; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 639 | |
| 640 | // OPEN: Settings > Security > Trusted credentials |
| 641 | // CATEGORY: SETTINGS |
| 642 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 643 | TRUSTED_CREDENTIALS = 92; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 644 | |
| 645 | // OPEN: Settings > Language & input > TTS output > [Engine] > Settings |
| 646 | // CATEGORY: SETTINGS |
| 647 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 648 | TTS_ENGINE_SETTINGS = 93; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 649 | |
| 650 | // OPEN: Settings > Language & input > Text-to-speech output |
| 651 | // CATEGORY: SETTINGS |
| 652 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 653 | TTS_TEXT_TO_SPEECH = 94; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 654 | |
| 655 | // OPEN: Settings > Security > Apps with usage access |
| 656 | // CATEGORY: SETTINGS |
| 657 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 658 | USAGE_ACCESS = 95; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 659 | |
| 660 | // OPEN: Settings > Users |
| 661 | // CATEGORY: SETTINGS |
| 662 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 663 | USER = 96; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 664 | |
| 665 | // OPEN: Settings > Users > [Restricted profile app & content access] |
| 666 | // CATEGORY: SETTINGS |
| 667 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 668 | USERS_APP_RESTRICTIONS = 97; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 669 | |
| 670 | // OPEN: Settings > Users > [User settings] |
| 671 | // CATEGORY: SETTINGS |
| 672 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 673 | USER_DETAILS = 98; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 674 | |
| 675 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 676 | VOICE_INPUT = 99; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 677 | |
| 678 | // OPEN: Settings > More > VPN |
| 679 | // CATEGORY: SETTINGS |
| 680 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 681 | VPN = 100; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 682 | |
| 683 | // OPEN: Settings > Display > Choose wallpaper from |
| 684 | // CATEGORY: SETTINGS |
| 685 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 686 | WALLPAPER_TYPE = 101; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 687 | |
| 688 | // OPEN: Settings > Display > Cast |
| 689 | // CATEGORY: SETTINGS |
| 690 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 691 | WFD_WIFI_DISPLAY = 102; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 692 | |
| 693 | // OPEN: Settings > Wi-Fi |
| 694 | // CATEGORY: SETTINGS |
| 695 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 696 | WIFI = 103; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 697 | |
| 698 | // OPEN: Settings > Wi-Fi > Advanced Wi-Fi |
| 699 | // CATEGORY: SETTINGS |
| 700 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 701 | WIFI_ADVANCED = 104; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 702 | |
| 703 | // OPEN: Settings > More > Wi-Fi Calling |
| 704 | // CATEGORY: SETTINGS |
| 705 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 706 | WIFI_CALLING = 105; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 707 | |
| 708 | // OPEN: Settings > Wi-Fi > Saved networks |
| 709 | // CATEGORY: SETTINGS |
| 710 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 711 | WIFI_SAVED_ACCESS_POINTS = 106; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 712 | |
| 713 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 714 | WIFI_APITEST = 107; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 715 | |
| 716 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 717 | WIFI_INFO = 108; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 718 | |
| 719 | // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct |
| 720 | // CATEGORY: SETTINGS |
| 721 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 722 | WIFI_P2P = 109; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 723 | |
| 724 | // OPEN: Settings > More |
| 725 | // CATEGORY: SETTINGS |
| 726 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 727 | WIRELESS = 110; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 728 | |
| 729 | // OPEN: Quick Settings Panel |
| 730 | // CATEGORY: QUICK_SETTINGS |
| 731 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 732 | QS_PANEL = 111; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 733 | |
| 734 | // OPEN: QS Airplane mode tile shown |
| 735 | // ACTION: QS Airplane mode tile tapped |
| 736 | // SUBTYPE: 0 is off, 1 is on |
| 737 | // CATEGORY: QUICK_SETTINGS |
| 738 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 739 | QS_AIRPLANEMODE = 112; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 740 | |
| 741 | // OPEN: QS Bluetooth tile shown |
| 742 | // ACTION: QS Bluetooth tile tapped |
| 743 | // SUBTYPE: 0 is off, 1 is on |
| 744 | // CATEGORY: QUICK_SETTINGS |
| 745 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 746 | QS_BLUETOOTH = 113; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 747 | |
| 748 | // OPEN: QS Cast tile shown |
| 749 | // ACTION: QS Cast tile tapped |
| 750 | // CATEGORY: QUICK_SETTINGS |
| 751 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 752 | QS_CAST = 114; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 753 | |
| 754 | // OPEN: QS Cellular tile shown |
| 755 | // ACTION: QS Cellular tile tapped |
| 756 | // CATEGORY: QUICK_SETTINGS |
| 757 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 758 | QS_CELLULAR = 115; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 759 | |
| 760 | // OPEN: QS Color inversion tile shown |
| 761 | // ACTION: QS Color inversion tile tapped |
| 762 | // SUBTYPE: 0 is off, 1 is on |
| 763 | // CATEGORY: QUICK_SETTINGS |
| 764 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 765 | QS_COLORINVERSION = 116; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 766 | |
| 767 | // OPEN: QS Cellular tile > Cellular detail panel |
| 768 | // CATEGORY: QUICK_SETTINGS |
| 769 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 770 | QS_DATAUSAGEDETAIL = 117; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 771 | |
| 772 | // OPEN: QS Do not disturb tile shown |
| 773 | // ACTION: QS Do not disturb tile tapped |
| 774 | // SUBTYPE: 0 is off, 1 is on |
| 775 | // CATEGORY: QUICK_SETTINGS |
| 776 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 777 | QS_DND = 118; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 778 | |
| 779 | // OPEN: QS Flashlight tile shown |
| 780 | // ACTION: QS Flashlight tile tapped |
| 781 | // SUBTYPE: 0 is off, 1 is on |
| 782 | // CATEGORY: QUICK_SETTINGS |
| 783 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 784 | QS_FLASHLIGHT = 119; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 785 | |
| 786 | // OPEN: QS Hotspot tile shown |
| 787 | // ACTION: QS Hotspot tile tapped |
| 788 | // SUBTYPE: 0 is off, 1 is on |
| 789 | // CATEGORY: QUICK_SETTINGS |
| 790 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 791 | QS_HOTSPOT = 120; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 792 | |
| 793 | // OPEN: QS 3P tile shown |
| 794 | // ACTION: QS 3P tile tapped |
| 795 | // CATEGORY: QUICK_SETTINGS |
| 796 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 797 | QS_INTENT = 121; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 798 | |
| 799 | // OPEN: QS Location tile shown |
| 800 | // ACTION: QS Location tile tapped |
| 801 | // SUBTYPE: 0 is off, 1 is on |
| 802 | // CATEGORY: QUICK_SETTINGS |
| 803 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 804 | QS_LOCATION = 122; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 805 | |
| 806 | // OPEN: QS Rotation tile shown |
| 807 | // ACTION: QS Rotation tile tapped |
| 808 | // SUBTYPE: 0 is off, 1 is on |
| 809 | // CATEGORY: QUICK_SETTINGS |
| 810 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 811 | QS_ROTATIONLOCK = 123; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 812 | |
| 813 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 814 | QS_USERDETAILITE = 124; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 815 | |
| 816 | // OPEN: QS User list panel |
| 817 | // CATEGORY: QUICK_SETTINGS |
| 818 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 819 | QS_USERDETAIL = 125; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 820 | |
| 821 | // OPEN: QS WiFi tile shown |
| 822 | // ACTION: QS WiFi tile tapped |
| 823 | // SUBTYPE: 0 is off, 1 is on |
| 824 | // CATEGORY: QUICK_SETTINGS |
| 825 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 826 | QS_WIFI = 126; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 827 | |
| 828 | // OPEN: Notification Panel (including lockscreen) |
| 829 | // CATEGORY: NOTIFICATION |
| 830 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 831 | NOTIFICATION_PANEL = 127; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 832 | |
| 833 | // OPEN: Notification in panel became visible. |
| 834 | // PACKAGE: App that posted the notification. |
| 835 | // ACTION: Notification is tapped. |
| 836 | // PACKAGE: App that posted the notification |
| 837 | // DETAIL: Notification is expanded by user. |
| 838 | // PACKAGE: App that posted the notification |
| 839 | // DISMISS: Notification is dismissed. |
| 840 | // PACKAGE: App that posted the notification |
| 841 | // SUBTYPE: Dismiss reason from NotificationManagerService.java |
| 842 | // CATEGORY: NOTIFICATION |
| 843 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 844 | NOTIFICATION_ITEM = 128; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 845 | |
| 846 | // ACTION: User tapped notification action |
| 847 | // PACKAGE: App that posted the notification |
| 848 | // SUBTYPE: Index of action on notification |
| 849 | // CATEGORY: NOTIFICATION |
| 850 | // OS: 5.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 851 | NOTIFICATION_ITEM_ACTION = 129; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 852 | |
| 853 | // OPEN: Settings > Apps > Configure apps > App permissions |
| 854 | // CATEGORY: SETTINGS |
| 855 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 856 | APPLICATIONS_ADVANCED = 130; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 857 | |
| 858 | // OPEN: Settings > Location > Scanning |
| 859 | // CATEGORY: SETTINGS |
| 860 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 861 | LOCATION_SCANNING = 131; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 862 | |
| 863 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 864 | MANAGE_APPLICATIONS_ALL = 132; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 865 | |
| 866 | // OPEN: Settings > Sound & notification > App notifications |
| 867 | // CATEGORY: SETTINGS |
| 868 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 869 | MANAGE_APPLICATIONS_NOTIFICATIONS = 133; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 870 | |
| 871 | // ACTION: Settings > Wi-Fi > Overflow > Add Network |
| 872 | // CATEGORY: SETTINGS |
| 873 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 874 | ACTION_WIFI_ADD_NETWORK = 134; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 875 | |
| 876 | // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network |
Stephen Chen | 0d14da3 | 2016-11-03 10:44:32 -0700 | [diff] [blame] | 877 | // SUBTYPE: true if connecting to a saved network, false if not |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 878 | // CATEGORY: SETTINGS |
| 879 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 880 | ACTION_WIFI_CONNECT = 135; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 881 | |
| 882 | // ACTION: Settings > Wi-Fi > Overflow > Refresh |
| 883 | // CATEGORY: SETTINGS |
| 884 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 885 | ACTION_WIFI_FORCE_SCAN = 136; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 886 | |
| 887 | // ACTION: Settings > Wi-Fi > [Long press network] > Forget network |
| 888 | // CATEGORY: SETTINGS |
| 889 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 890 | ACTION_WIFI_FORGET = 137; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 891 | |
| 892 | // ACTION: Settings > Wi-Fi > Toggle off |
Stephen Chen | 0d14da3 | 2016-11-03 10:44:32 -0700 | [diff] [blame] | 893 | // SUBTYPE: true if connected to network before toggle, false if not |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 894 | // CATEGORY: SETTINGS |
| 895 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 896 | ACTION_WIFI_OFF = 138; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 897 | |
| 898 | // ACTION: Settings > Wi-Fi > Toggle on |
| 899 | // CATEGORY: SETTINGS |
| 900 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 901 | ACTION_WIFI_ON = 139; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 902 | |
| 903 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 904 | MANAGE_PERMISSIONS = 140; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 905 | |
| 906 | // OPEN: Settings > Sound & notification > DND > Priority only allows |
| 907 | // CATEGORY: SETTINGS |
| 908 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 909 | NOTIFICATION_ZEN_MODE_PRIORITY = 141; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 910 | |
| 911 | // OPEN: Settings > Sound & notification > DND > Automatic rules |
| 912 | // CATEGORY: SETTINGS |
| 913 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 914 | NOTIFICATION_ZEN_MODE_AUTOMATION = 142; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 915 | |
| 916 | // OPEN: Settings > Apps > Configure apps > App links |
| 917 | // CATEGORY: SETTINGS |
| 918 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 919 | MANAGE_DOMAIN_URLS = 143; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 920 | |
| 921 | // OPEN: Settings > Sound & notification > DND > [Time based rule] |
| 922 | // CATEGORY: SETTINGS |
| 923 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 924 | NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 925 | |
| 926 | // OPEN: Settings > Sound & notification > DND > [External rule] |
| 927 | // CATEGORY: SETTINGS |
| 928 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 929 | NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 930 | |
| 931 | // OPEN: Settings > Sound & notification > DND > [Event rule] |
| 932 | // CATEGORY: SETTINGS |
| 933 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 934 | NOTIFICATION_ZEN_MODE_EVENT_RULE = 146; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 935 | |
| 936 | // ACTION: App notification settings > Block Notifications |
| 937 | // CATEGORY: SETTINGS |
| 938 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 939 | ACTION_BAN_APP_NOTES = 147; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 940 | |
| 941 | // ACTION: Notification shade > Dismiss all button |
| 942 | // CATEGORY: NOTIFICATION |
| 943 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 944 | ACTION_DISMISS_ALL_NOTES = 148; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 945 | |
| 946 | // OPEN: QS Do Not Disturb detail panel |
| 947 | // CATEGORY: QUICK_SETTINGS |
| 948 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 949 | QS_DND_DETAILS = 149; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 950 | |
| 951 | // OPEN: QS Bluetooth detail panel |
| 952 | // CATEGORY: QUICK_SETTINGS |
| 953 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 954 | QS_BLUETOOTH_DETAILS = 150; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 955 | |
| 956 | // OPEN: QS Cast detail panel |
| 957 | // CATEGORY: QUICK_SETTINGS |
| 958 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 959 | QS_CAST_DETAILS = 151; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 960 | |
| 961 | // OPEN: QS Wi-Fi detail panel |
| 962 | // CATEGORY: QUICK_SETTINGS |
| 963 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 964 | QS_WIFI_DETAILS = 152; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 965 | |
| 966 | // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle |
| 967 | // SUBTYPE: 0 is off, 1 is on |
| 968 | // CATEGORY: QUICK_SETTINGS |
| 969 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 970 | QS_WIFI_TOGGLE = 153; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 971 | |
| 972 | // ACTION: QS Bluetooth detail panel > Bluetooth toggle |
| 973 | // SUBTYPE: 0 is off, 1 is on |
| 974 | // CATEGORY: QUICK_SETTINGS |
| 975 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 976 | QS_BLUETOOTH_TOGGLE = 154; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 977 | |
| 978 | // ACTION: QS Cellular detail panel > Cellular toggle |
| 979 | // SUBTYPE: 0 is off, 1 is on |
| 980 | // CATEGORY: QUICK_SETTINGS |
| 981 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 982 | QS_CELLULAR_TOGGLE = 155; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 983 | |
| 984 | // ACTION: QS User list panel > Select different user |
| 985 | // CATEGORY: QUICK_SETTINGS |
| 986 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 987 | QS_SWITCH_USER = 156; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 988 | |
| 989 | // ACTION: QS Cast detail panel > Select cast device |
| 990 | // CATEGORY: QUICK_SETTINGS |
| 991 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 992 | QS_CAST_SELECT = 157; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 993 | |
| 994 | // ACTION: QS Cast detail panel > Disconnect cast device |
| 995 | // CATEGORY: QUICK_SETTINGS |
| 996 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 997 | QS_CAST_DISCONNECT = 158; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 998 | |
| 999 | // ACTION: Settings > Bluetooth > Toggle |
| 1000 | // SUBTYPE: 0 is off, 1 is on |
| 1001 | // CATEGORY: SETTINGS |
| 1002 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1003 | ACTION_BLUETOOTH_TOGGLE = 159; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1004 | |
| 1005 | // ACTION: Settings > Bluetooth > Overflow > Refresh |
| 1006 | // CATEGORY: SETTINGS |
| 1007 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1008 | ACTION_BLUETOOTH_SCAN = 160; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1009 | |
| 1010 | // ACTION: Settings > Bluetooth > Overflow > Rename this device |
| 1011 | // CATEGORY: SETTINGS |
| 1012 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1013 | ACTION_BLUETOOTH_RENAME = 161; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1014 | |
| 1015 | // ACTION: Settings > Bluetooth > Overflow > Show received files |
| 1016 | // CATEGORY: SETTINGS |
| 1017 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1018 | ACTION_BLUETOOTH_FILES = 162; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1019 | |
| 1020 | // ACTION: QS DND details panel > Increase / Decrease exit time |
| 1021 | // SUBTYPE: true is increase, false is decrease |
| 1022 | // CATEGORY: QUICK_SETTINGS |
| 1023 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1024 | QS_DND_TIME = 163; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1025 | |
| 1026 | // ACTION: QS DND details panel > [Exit condition] |
| 1027 | // CATEGORY: QUICK_SETTINGS |
| 1028 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1029 | QS_DND_CONDITION_SELECT = 164; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1030 | |
| 1031 | // ACTION: QS DND details panel > [DND mode] |
| 1032 | // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only |
| 1033 | // CATEGORY: QUICK_SETTINGS |
| 1034 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1035 | QS_DND_ZEN_SELECT = 165; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1036 | |
| 1037 | // ACTION: QS DND detail panel > DND toggle |
| 1038 | // SUBTYPE: 0 is off, 1 is on |
| 1039 | // CATEGORY: QUICK_SETTINGS |
| 1040 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1041 | QS_DND_TOGGLE = 166; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1042 | |
| 1043 | // ACTION: DND Settings > Priority only allows > Reminder toggle |
| 1044 | // SUBTYPE: 0 is off, 1 is on |
| 1045 | // CATEGORY: SETTINGS |
| 1046 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1047 | ACTION_ZEN_ALLOW_REMINDERS = 167; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1048 | |
| 1049 | // ACTION: DND Settings > Priority only allows > Event toggle |
| 1050 | // SUBTYPE: 0 is off, 1 is on |
| 1051 | // CATEGORY: SETTINGS |
| 1052 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1053 | ACTION_ZEN_ALLOW_EVENTS = 168; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1054 | |
| 1055 | // ACTION: DND Settings > Priority only allows > Messages |
| 1056 | // SUBTYPE: 0 is off, 1 is on |
| 1057 | // CATEGORY: SETTINGS |
| 1058 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1059 | ACTION_ZEN_ALLOW_MESSAGES = 169; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1060 | |
| 1061 | // ACTION: DND Settings > Priority only allows > Calls |
| 1062 | // SUBTYPE: 0 is off, 1 is on |
| 1063 | // CATEGORY: SETTINGS |
| 1064 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1065 | ACTION_ZEN_ALLOW_CALLS = 170; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1066 | |
| 1067 | // ACTION: DND Settings > Priority only allows > Repeat callers toggle |
| 1068 | // SUBTYPE: 0 is off, 1 is on |
| 1069 | // CATEGORY: SETTINGS |
| 1070 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1071 | ACTION_ZEN_ALLOW_REPEAT_CALLS = 171; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1072 | |
| 1073 | // ACTION: DND Settings > Automatic rules > Add rule |
| 1074 | // CATEGORY: SETTINGS |
| 1075 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1076 | ACTION_ZEN_ADD_RULE = 172; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1077 | |
| 1078 | // ACTION: DND Settings > Automatic rules > Add rule > OK |
| 1079 | // CATEGORY: SETTINGS |
| 1080 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1081 | ACTION_ZEN_ADD_RULE_OK = 173; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1082 | |
| 1083 | // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule |
| 1084 | // CATEGORY: SETTINGS |
| 1085 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1086 | ACTION_ZEN_DELETE_RULE = 174; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1087 | |
| 1088 | // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete |
| 1089 | // CATEGORY: SETTINGS |
| 1090 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1091 | ACTION_ZEN_DELETE_RULE_OK = 175; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1092 | |
| 1093 | // ACTION: DND Settings > Automatic rules > [Rule] > Toggle |
| 1094 | // SUBTYPE: 0 is off, 1 is on |
| 1095 | // CATEGORY: SETTINGS |
| 1096 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1097 | ACTION_ZEN_ENABLE_RULE = 176; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1098 | |
| 1099 | // ACTION: Settings > More > Airplane mode toggle |
| 1100 | // SUBTYPE: 0 is off, 1 is on |
| 1101 | // CATEGORY: SETTINGS |
| 1102 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1103 | ACTION_AIRPLANE_TOGGLE = 177; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1104 | |
| 1105 | // ACTION: Settings > Data usage > Cellular data toggle |
| 1106 | // SUBTYPE: 0 is off, 1 is on |
| 1107 | // CATEGORY: SETTINGS |
| 1108 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1109 | ACTION_CELL_DATA_TOGGLE = 178; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1110 | |
| 1111 | // OPEN: Settings > Sound & notification > Notification access |
| 1112 | // CATEGORY: SETTINGS |
| 1113 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1114 | NOTIFICATION_ACCESS = 179; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1115 | |
| 1116 | // OPEN: Settings > Sound & notification > Do Not Disturb access |
| 1117 | // CATEGORY: SETTINGS |
| 1118 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1119 | NOTIFICATION_ZEN_MODE_ACCESS = 180; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1120 | |
| 1121 | // OPEN: Settings > Apps > Configure apps > Default Apps |
| 1122 | // CATEGORY: SETTINGS |
| 1123 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1124 | APPLICATIONS_DEFAULT_APPS = 181; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1125 | |
| 1126 | // OPEN: Settings > Internal storage > Apps storage |
| 1127 | // CATEGORY: SETTINGS |
| 1128 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1129 | APPLICATIONS_STORAGE_APPS = 182; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1130 | |
| 1131 | // OPEN: Settings > Security > Usage access |
| 1132 | // CATEGORY: SETTINGS |
| 1133 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1134 | APPLICATIONS_USAGE_ACCESS_DETAIL = 183; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1135 | |
| 1136 | // OPEN: Settings > Battery > Battery optimization |
| 1137 | // CATEGORY: SETTINGS |
| 1138 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1139 | APPLICATIONS_HIGH_POWER_APPS = 184; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1140 | |
| 1141 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1142 | FUELGAUGE_HIGH_POWER_DETAILS = 185; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1143 | |
| 1144 | // ACTION: Lockscreen > Unlock gesture |
| 1145 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1146 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1147 | ACTION_LS_UNLOCK = 186; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1148 | |
| 1149 | // ACTION: Lockscreen > Pull shade open |
| 1150 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1151 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1152 | ACTION_LS_SHADE = 187; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1153 | |
| 1154 | // ACTION: Lockscreen > Tap on lock, shows hint |
| 1155 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1156 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1157 | ACTION_LS_HINT = 188; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1158 | |
| 1159 | // ACTION: Lockscreen > Camera |
| 1160 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1161 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1162 | ACTION_LS_CAMERA = 189; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1163 | |
| 1164 | // ACTION: Lockscreen > Dialer |
| 1165 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1166 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1167 | ACTION_LS_DIALER = 190; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1168 | |
| 1169 | // ACTION: Lockscreen > Tap on lock, locks phone |
| 1170 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1171 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1172 | ACTION_LS_LOCK = 191; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1173 | |
| 1174 | // ACTION: Lockscreen > Tap on notification, false touch rejection |
| 1175 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1176 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1177 | ACTION_LS_NOTE = 192; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1178 | |
| 1179 | // ACTION: Lockscreen > Swipe down to open quick settings |
| 1180 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1181 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1182 | ACTION_LS_QS = 193; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1183 | |
| 1184 | // ACTION: Swipe down to open quick settings when unlocked |
| 1185 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1186 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1187 | ACTION_SHADE_QS_PULL = 194; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1188 | |
| 1189 | // ACTION: Notification shade > Tap to open quick settings |
| 1190 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1191 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1192 | ACTION_SHADE_QS_TAP = 195; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1193 | |
| 1194 | // OPEN: Lockscreen |
| 1195 | // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN |
| 1196 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1197 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1198 | LOCKSCREEN = 196; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1199 | |
| 1200 | // OPEN: Lockscreen > Screen to enter password / pattern / PIN |
| 1201 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1202 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1203 | BOUNCER = 197; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1204 | |
| 1205 | // OPEN: Screen turned on |
| 1206 | // SUBTYPE: 2 is user action |
| 1207 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1208 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1209 | SCREEN = 198; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1210 | |
| 1211 | // OPEN: Notification caused sound, vibration, and/or LED blink |
| 1212 | // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together |
| 1213 | // CATEGORY: NOTIFICATION |
| 1214 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1215 | NOTIFICATION_ALERT = 199; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1216 | |
| 1217 | // ACTION: Lockscreen > Emergency Call button |
| 1218 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1219 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1220 | ACTION_EMERGENCY_CALL = 200; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1221 | |
| 1222 | // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input |
| 1223 | // CATEGORY: SETTINGS |
| 1224 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1225 | APPLICATIONS_MANAGE_ASSIST = 201; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1226 | |
| 1227 | // OPEN: Settings > Memory |
| 1228 | // CATEGORY: SETTINGS |
| 1229 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1230 | PROCESS_STATS_SUMMARY = 202; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1231 | |
| 1232 | // ACTION: Settings > Display > When device is rotated |
| 1233 | // CATEGORY: SETTINGS |
| 1234 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1235 | ACTION_ROTATION_LOCK = 203; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1236 | |
| 1237 | // ACTION: Long press on notification to view controls |
| 1238 | // CATEGORY: NOTIFICATION |
| 1239 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1240 | ACTION_NOTE_CONTROLS = 204; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1241 | |
| 1242 | // ACTION: Notificatoin controls > Info button |
| 1243 | // CATEGORY: NOTIFICATION |
| 1244 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1245 | ACTION_NOTE_INFO = 205; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1246 | |
| 1247 | // ACTION: Notification controls > Settings button |
| 1248 | // CATEGORY: NOTIFICATION |
| 1249 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1250 | ACTION_APP_NOTE_SETTINGS = 206; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1251 | |
| 1252 | // OPEN: Volume Dialog (with hardware buttons) |
| 1253 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1254 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1255 | VOLUME_DIALOG = 207; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1256 | |
| 1257 | // OPEN: Volume dialog > Expanded volume dialog (multiple sliders) |
| 1258 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1259 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1260 | VOLUME_DIALOG_DETAILS = 208; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1261 | |
| 1262 | // ACTION: Volume dialog > Adjust volume slider |
| 1263 | // SUBTYPE: volume level (0-7) |
| 1264 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1265 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1266 | ACTION_VOLUME_SLIDER = 209; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1267 | |
| 1268 | // ACTION: Volume dialog > Select non-active stream |
| 1269 | // SUBTYPE: stream (defined in AudioSystem.java) |
| 1270 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1271 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1272 | ACTION_VOLUME_STREAM = 210; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1273 | |
| 1274 | // ACTION: Adjust volume with hardware key |
| 1275 | // SUBTYPE: volume level (0-7) |
| 1276 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1277 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1278 | ACTION_VOLUME_KEY = 211; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1279 | |
| 1280 | // ACTION: Volume dialog > Mute a stream by tapping icon |
| 1281 | // SUBTYPE: mute is 1, audible is 2 |
| 1282 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1283 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1284 | ACTION_VOLUME_ICON = 212; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1285 | |
| 1286 | // ACTION: Volume dialog > Change ringer mode by tapping icon |
| 1287 | // SUBTYPE: 2 is audible, 3 is vibrate |
| 1288 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1289 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1290 | ACTION_RINGER_MODE = 213; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1291 | |
| 1292 | // ACTION: Chooser shown (share target, file open, etc.) |
| 1293 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1294 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1295 | ACTION_ACTIVITY_CHOOSER_SHOWN = 214; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1296 | |
| 1297 | // ACTION: Chooser > User taps an app target |
| 1298 | // SUBTYPE: Index of target |
| 1299 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1300 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1301 | ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1302 | |
| 1303 | // ACTION: Chooser > User taps a service target |
| 1304 | // SUBTYPE: Index of target |
| 1305 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1306 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1307 | ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1308 | |
| 1309 | // ACTION: Chooser > User taps a standard target |
| 1310 | // SUBTYPE: Index of target |
| 1311 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1312 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1313 | ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1314 | |
| 1315 | // ACTION: QS Brightness Slider (with auto brightness disabled) |
| 1316 | // SUBTYPE: slider value |
| 1317 | // CATEGORY: QUICK_SETTINGS |
| 1318 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1319 | ACTION_BRIGHTNESS = 218; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1320 | |
| 1321 | // ACTION: QS Brightness Slider (with auto brightness enabled) |
| 1322 | // SUBTYPE: slider value |
| 1323 | // CATEGORY: QUICK_SETTINGS |
| 1324 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1325 | ACTION_BRIGHTNESS_AUTO = 219; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1326 | |
| 1327 | // OPEN: Settings > Display > Brightness Slider |
| 1328 | // CATEGORY: SETTINGS |
| 1329 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1330 | BRIGHTNESS_DIALOG = 220; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1331 | |
Christine Franks | 47175c3 | 2017-03-14 10:21:25 -0700 | [diff] [blame] | 1332 | // OPEN: Settings > Apps > Configure Apps > Display over other apps |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1333 | // CATEGORY: SETTINGS |
| 1334 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1335 | SYSTEM_ALERT_WINDOW_APPS = 221; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1336 | |
| 1337 | // OPEN: Display has entered dream mode |
| 1338 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1339 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1340 | DREAMING = 222; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1341 | |
| 1342 | // OPEN: Display has entered ambient notification mode |
| 1343 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1344 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1345 | DOZING = 223; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1346 | |
| 1347 | // OPEN: Overview |
| 1348 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1349 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1350 | OVERVIEW_ACTIVITY = 224; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1351 | |
| 1352 | // OPEN: Settings > About phone > Legal information |
| 1353 | // CATEGORY: SETTINGS |
| 1354 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1355 | ABOUT_LEGAL_SETTINGS = 225; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1356 | |
| 1357 | // OPEN: Settings > Search > Perform search |
| 1358 | // CATEGORY: SETTINGS |
| 1359 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1360 | ACTION_SEARCH_RESULTS = 226; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1361 | |
| 1362 | // OPEN: Settings > System UI Tuner |
| 1363 | // CATEGORY: SETTINGS |
| 1364 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1365 | TUNER = 227; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1366 | |
| 1367 | // OPEN: Settings > System UI Tuner > Quick Settings |
| 1368 | // CATEGORY: SETTINGS |
| 1369 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1370 | TUNER_QS = 228; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1371 | |
| 1372 | // OPEN: Settings > System UI Tuner > Demo mode |
| 1373 | // CATEGORY: SETTINGS |
| 1374 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1375 | TUNER_DEMO_MODE = 229; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1376 | |
| 1377 | // ACTION: Settings > System UI Tuner > Quick Settings > Move tile |
| 1378 | // PACKAGE: Tile |
| 1379 | // CATEGORY: SETTINGS |
| 1380 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1381 | TUNER_QS_REORDER = 230; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1382 | |
| 1383 | // ACTION: Settings > System UI Tuner > Quick Settings > Add tile |
| 1384 | // PACKAGE: Tile |
| 1385 | // CATEGORY: SETTINGS |
| 1386 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1387 | TUNER_QS_ADD = 231; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1388 | |
| 1389 | // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile |
| 1390 | // PACKAGE: Tile |
| 1391 | // CATEGORY: SETTINGS |
| 1392 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1393 | TUNER_QS_REMOVE = 232; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1394 | |
| 1395 | // ACTION: Settings > System UI Tuner > Status bar > Enable icon |
| 1396 | // PACKAGE: Icon |
| 1397 | // CATEGORY: SETTINGS |
| 1398 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1399 | TUNER_STATUS_BAR_ENABLE = 233; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1400 | |
| 1401 | // ACTION: Settings > System UI Tuner > Status bar > Disable icon |
| 1402 | // PACKAGE: Icon |
| 1403 | // CATEGORY: SETTINGS |
| 1404 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1405 | TUNER_STATUS_BAR_DISABLE = 234; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1406 | |
| 1407 | // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode |
| 1408 | // SUBTYPE: false is disabled, true is enabled |
| 1409 | // CATEGORY: SETTINGS |
| 1410 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1411 | TUNER_DEMO_MODE_ENABLED = 235; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1412 | |
| 1413 | // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode |
| 1414 | // SUBTYPE: false is disabled, true is enabled |
| 1415 | // CATEGORY: SETTINGS |
| 1416 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1417 | TUNER_DEMO_MODE_ON = 236; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1418 | |
| 1419 | // ACTION: Settings > System UI Tuner > Show embedded battery percentage |
| 1420 | // SUBTYPE: 0 is disabled, 1 is enabled |
| 1421 | // CATEGORY: SETTINGS |
| 1422 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1423 | TUNER_BATTERY_PERCENTAGE = 237; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1424 | |
| 1425 | // OPEN: Settings > Developer options > Inactive apps |
| 1426 | // CATEGORY: SETTINGS |
| 1427 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1428 | FUELGAUGE_INACTIVE_APPS = 238; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1429 | |
| 1430 | // ACTION: Long press home to bring up assistant |
| 1431 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1432 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1433 | ACTION_ASSIST_LONG_PRESS = 239; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1434 | |
| 1435 | // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint |
| 1436 | // CATEGORY: SETTINGS |
| 1437 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1438 | FINGERPRINT_ENROLLING = 240; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1439 | |
| 1440 | // OPEN: Fingerprint Enroll > Find Sensor |
| 1441 | // CATEGORY: SETTINGS |
| 1442 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1443 | FINGERPRINT_FIND_SENSOR = 241; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1444 | |
| 1445 | // OPEN: Fingerprint Enroll > Fingerprint Enrolled! |
| 1446 | // CATEGORY: SETTINGS |
| 1447 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1448 | FINGERPRINT_ENROLL_FINISH = 242; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1449 | |
| 1450 | // OPEN: Fingerprint Enroll introduction |
| 1451 | // CATEGORY: SETTINGS |
| 1452 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1453 | FINGERPRINT_ENROLL_INTRO = 243; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1454 | |
| 1455 | // OPEN: Fingerprint Enroll onboarding |
| 1456 | // CATEGORY: SETTINGS |
| 1457 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1458 | FINGERPRINT_ENROLL_ONBOARD = 244; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1459 | |
| 1460 | // OPEN: Fingerprint Enroll > Let's Start! |
| 1461 | // CATEGORY: SETTINGS |
| 1462 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1463 | FINGERPRINT_ENROLL_SIDECAR = 245; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1464 | |
| 1465 | // OPEN: Fingerprint Enroll SUW > Let's Start! |
| 1466 | // CATEGORY: SETTINGS |
| 1467 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1468 | FINGERPRINT_ENROLLING_SETUP = 246; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1469 | |
| 1470 | // OPEN: Fingerprint Enroll SUW > Find Sensor |
| 1471 | // CATEGORY: SETTINGS |
| 1472 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1473 | FINGERPRINT_FIND_SENSOR_SETUP = 247; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1474 | |
| 1475 | // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled! |
| 1476 | // CATEGORY: SETTINGS |
| 1477 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1478 | FINGERPRINT_ENROLL_FINISH_SETUP = 248; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1479 | |
| 1480 | // OPEN: Fingerprint Enroll SUW introduction |
| 1481 | // CATEGORY: SETTINGS |
| 1482 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1483 | FINGERPRINT_ENROLL_INTRO_SETUP = 249; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1484 | |
| 1485 | // OPEN: Fingerprint Enroll SUW onboarding |
| 1486 | // CATEGORY: SETTINGS |
| 1487 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1488 | FINGERPRINT_ENROLL_ONBOARD_SETUP = 250; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1489 | |
| 1490 | // ACTION: Add fingerprint > Enroll fingerprint |
| 1491 | // CATEGORY: SETTINGS |
| 1492 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1493 | ACTION_FINGERPRINT_ENROLL = 251; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1494 | |
| 1495 | // ACTION: Authenticate using fingerprint |
| 1496 | // CATEGORY: SETTINGS |
| 1497 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1498 | ACTION_FINGERPRINT_AUTH = 252; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1499 | |
| 1500 | // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete |
| 1501 | // CATEGORY: SETTINGS |
| 1502 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1503 | ACTION_FINGERPRINT_DELETE = 253; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1504 | |
| 1505 | // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename |
| 1506 | // CATEGORY: SETTINGS |
| 1507 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1508 | ACTION_FINGERPRINT_RENAME = 254; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1509 | |
| 1510 | // ACTION: Double tap camera shortcut |
| 1511 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1512 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1513 | ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1514 | |
| 1515 | // ACTION: Double twist camera shortcut |
| 1516 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1517 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1518 | ACTION_WIGGLE_CAMERA_GESTURE = 256; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1519 | |
| 1520 | // OPEN: QS Work Mode tile shown |
| 1521 | // ACTION: QS Work Mode tile tapped |
| 1522 | // SUBTYPE: 0 is off, 1 is on |
| 1523 | // CATEGORY: QUICK_SETTINGS |
| 1524 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1525 | QS_WORKMODE = 257; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1526 | |
| 1527 | // OPEN: Settings > Developer Options > Background Check |
| 1528 | // CATEGORY: SETTINGS |
| 1529 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1530 | BACKGROUND_CHECK_SUMMARY = 258; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1531 | |
| 1532 | // OPEN: QS Lock tile shown |
| 1533 | // ACTION: QS Lock tile tapped |
| 1534 | // SUBTYPE: 0 is off, 1 is on |
| 1535 | // CATEGORY: QUICK_SETTINGS |
| 1536 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1537 | QS_LOCK_TILE = 259; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1538 | |
| 1539 | // OPEN: QS User Tile shown |
| 1540 | // CATEGORY: QUICK_SETTINGS |
| 1541 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1542 | QS_USER_TILE = 260; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1543 | |
| 1544 | // OPEN: QS Battery tile shown |
| 1545 | // CATEGORY: QUICK_SETTINGS |
| 1546 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1547 | QS_BATTERY_TILE = 261; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1548 | |
| 1549 | // OPEN: Settings > Sound > Do not disturb > Visual interruptions |
| 1550 | // CATEGORY: SETTINGS |
| 1551 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1552 | NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1553 | |
| 1554 | // ACTION: Visual interruptions > No screen interuptions toggle |
| 1555 | // SUBTYPE: 0 is off, 1 is on |
| 1556 | // CATEGORY: SETTINGS |
| 1557 | // OS: N |
Julia Reynolds | d560729 | 2016-02-05 15:25:58 -0500 | [diff] [blame] | 1558 | ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1559 | |
| 1560 | // ACTION: Visual interruptions > No notification light toggle |
| 1561 | // SUBTYPE: 0 is off, 1 is on |
| 1562 | // CATEGORY: SETTINGS |
| 1563 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1564 | ACTION_ZEN_ALLOW_LIGHTS = 264; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1565 | |
Julia Reynolds | 005c8b9 | 2017-08-24 10:35:53 -0400 | [diff] [blame] | 1566 | // OPEN: Settings > Notifications > [App] > Channel Notifications |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1567 | // CATEGORY: SETTINGS |
| 1568 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1569 | NOTIFICATION_TOPIC_NOTIFICATION = 265; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1570 | |
| 1571 | // ACTION: Settings > Apps > Default Apps > Select different SMS app |
| 1572 | // PACKAGE: Selected SMS app |
| 1573 | // CATEGORY: SETTINGS |
| 1574 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1575 | ACTION_DEFAULT_SMS_APP_CHANGED = 266; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1576 | |
| 1577 | // OPEN: QS Color modification tile shown |
| 1578 | // ACTION: QS Color modification tile tapped |
| 1579 | // SUBTYPE: 0 is off, 1 is on |
| 1580 | // CATEGORY: QUICK_SETTINGS |
| 1581 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1582 | QS_COLOR_MATRIX = 267; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1583 | |
| 1584 | // OPEN: QS Custom tile shown |
| 1585 | // ACTION: QS Work Mode tile tapped |
| 1586 | // CATEGORY: QUICK_SETTINGS |
| 1587 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1588 | QS_CUSTOM = 268; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1589 | |
| 1590 | // ACTION: Visual interruptions > Never turn off the screen toggle |
| 1591 | // SUBTYPE: 0 is off, 1 is on |
| 1592 | // CATEGORY: SETTINGS |
| 1593 | // OS: N |
Julia Reynolds | d560729 | 2016-02-05 15:25:58 -0500 | [diff] [blame] | 1594 | ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269; |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1595 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1596 | // ACTION: Overview > Long-press task, drag to enter split-screen |
| 1597 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1598 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1599 | ACTION_WINDOW_DOCK_DRAG_DROP = 270; |
| 1600 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1601 | // ACTION: In App > Long-press Overview button to enter split-screen |
| 1602 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1603 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1604 | ACTION_WINDOW_DOCK_LONGPRESS = 271; |
| 1605 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1606 | // ACTION: In App > Swipe Overview button to enter split-screen |
| 1607 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1608 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1609 | ACTION_WINDOW_DOCK_SWIPE = 272; |
| 1610 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1611 | // ACTION: Launch profile-specific app > Confirm credentials |
| 1612 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1613 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1614 | PROFILE_CHALLENGE = 273; |
| 1615 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1616 | // OPEN: QS Battery detail panel |
| 1617 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1618 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1619 | QS_BATTERY_DETAIL = 274; |
| 1620 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1621 | // OPEN: Overview > History |
| 1622 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1623 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1624 | OVERVIEW_HISTORY = 275; |
| 1625 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1626 | // ACTION: Overview > Page by tapping Overview button |
| 1627 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1628 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1629 | ACTION_OVERVIEW_PAGE = 276; |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1630 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1631 | // ACTION: Overview > Select app |
| 1632 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1633 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1634 | ACTION_OVERVIEW_SELECT = 277; |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1635 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1636 | // ACTION: View emergency info |
| 1637 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1638 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1639 | ACTION_VIEW_EMERGENCY_INFO = 278; |
| 1640 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1641 | // ACTION: Edit emergency info activity |
| 1642 | // CATEGORY: SETTINGS |
| 1643 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1644 | ACTION_EDIT_EMERGENCY_INFO = 279; |
| 1645 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1646 | // ACTION: Edit emergency info field |
| 1647 | // CATEGORY: SETTINGS |
| 1648 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1649 | ACTION_EDIT_EMERGENCY_INFO_FIELD = 280; |
| 1650 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1651 | // ACTION: Add emergency contact |
| 1652 | // CATEGORY: SETTINGS |
| 1653 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1654 | ACTION_ADD_EMERGENCY_CONTACT = 281; |
| 1655 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1656 | // ACTION: Delete emergency contact |
| 1657 | // CATEGORY: SETTINGS |
| 1658 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1659 | ACTION_DELETE_EMERGENCY_CONTACT = 282; |
| 1660 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1661 | // ACTION: Call emergency contact |
| 1662 | // CATEGORY: SETTINGS |
| 1663 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1664 | ACTION_CALL_EMERGENCY_CONTACT = 283; |
Jason Monk | 9a4ce13 | 2016-01-21 15:27:17 -0500 | [diff] [blame] | 1665 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1666 | // OPEN: QS Data Saver tile shown |
| 1667 | // ACTION: QS Data Saver tile tapped |
| 1668 | // CATEGORY: QUICK_SETTINGS |
Jason Monk | 9a4ce13 | 2016-01-21 15:27:17 -0500 | [diff] [blame] | 1669 | QS_DATA_SAVER = 284; |
Jorim Jaggi | dd50c3f | 2016-02-04 14:55:07 -0800 | [diff] [blame] | 1670 | |
Robin Lee | 8c1306e | 2016-02-01 11:37:02 +0000 | [diff] [blame] | 1671 | // OPEN: Settings > Security > User credentials |
| 1672 | // CATEGORY: Settings |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1673 | // OS: N |
Robin Lee | 8c1306e | 2016-02-01 11:37:02 +0000 | [diff] [blame] | 1674 | USER_CREDENTIALS = 285; |
Jorim Jaggi | ea4a19f | 2016-02-03 21:31:27 -0800 | [diff] [blame] | 1675 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1676 | // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen |
| 1677 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1678 | // OS: N |
Jorim Jaggi | dd50c3f | 2016-02-04 14:55:07 -0800 | [diff] [blame] | 1679 | ACTION_WINDOW_UNDOCK_LONGPRESS = 286; |
Winson | 4232952 | 2016-02-05 10:39:46 -0800 | [diff] [blame] | 1680 | |
| 1681 | // Logged when the user scrolls through overview manually |
| 1682 | OVERVIEW_SCROLL = 287; |
| 1683 | |
| 1684 | // Logged when the overview times out automatically selecting an app |
| 1685 | OVERVIEW_SELECT_TIMEOUT = 288; |
| 1686 | |
| 1687 | // Logged when a user dismisses a task in overview |
| 1688 | OVERVIEW_DISMISS = 289; |
Julia Reynolds | b1a235f | 2016-02-09 12:57:02 -0500 | [diff] [blame] | 1689 | |
| 1690 | // Logged when the user modifying the notification importance slider. |
| 1691 | ACTION_MODIFY_IMPORTANCE_SLIDER = 290; |
| 1692 | |
| 1693 | // Logged when the user saves a modification to notification importance. Negative numbers |
| 1694 | // indicate the user lowered the importance; positive means they increased it. |
| 1695 | ACTION_SAVE_IMPORTANCE = 291; |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1696 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1697 | // ACTION: Long-press power button, then tap "Take bug report" option. |
| 1698 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1699 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1700 | ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292; |
| 1701 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1702 | // ACTION: Long-press power button, then long-press "Take bug report" option. |
| 1703 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1704 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1705 | ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293; |
| 1706 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1707 | // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report |
| 1708 | // CATEGORY: SETTINGS |
| 1709 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1710 | // Interactive bug report initiated from Settings. |
| 1711 | ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294; |
| 1712 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1713 | // ACTION: Settings -> Developer Options -> Take bug report -> Full report |
| 1714 | // CATEGORY: SETTINGS |
| 1715 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1716 | // Interactive bug report initiated from Settings. |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1717 | ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295; |
| 1718 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1719 | // ACTION: User tapped notification action to cancel a bug report |
| 1720 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1721 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1722 | ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296; |
| 1723 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1724 | // ACTION: User tapped notification action to launch bug report details screen |
| 1725 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1726 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1727 | ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297; |
| 1728 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1729 | // ACTION: User tapped notification action to take adition screenshot on bug report |
| 1730 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1731 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1732 | ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298; |
| 1733 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1734 | // ACTION: User tapped notification to share bug report |
| 1735 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1736 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1737 | ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299; |
| 1738 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1739 | // ACTION: User changed bug report name using the details screen |
| 1740 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1741 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1742 | ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300; |
| 1743 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1744 | // ACTION: User changed bug report title using the details screen |
| 1745 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1746 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1747 | ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301; |
| 1748 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1749 | // ACTION: User changed bug report description using the details screen |
| 1750 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1751 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1752 | ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302; |
| 1753 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1754 | // ACTION: User tapped Save in the bug report details screen. |
| 1755 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1756 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1757 | ACTION_BUGREPORT_DETAILS_SAVED = 303; |
| 1758 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1759 | // ACTION: User tapped Cancel in the bug report details screen. |
| 1760 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1761 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1762 | ACTION_BUGREPORT_DETAILS_CANCELED = 304; |
Jason Monk | 5732df4 | 2016-02-24 16:24:55 -0500 | [diff] [blame] | 1763 | |
| 1764 | // Tuner: Open/close calibrate dialog. |
| 1765 | TUNER_CALIBRATE_DISPLAY = 305; |
| 1766 | |
| 1767 | // Tuner: Open/close color and appearance. |
| 1768 | TUNER_COLOR_AND_APPEARANCE = 306; |
| 1769 | |
| 1770 | // Tuner: Apply calibrate dialog. |
| 1771 | ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307; |
| 1772 | |
| 1773 | // Tuner: Open/close night mode. |
| 1774 | TUNER_NIGHT_MODE = 308; |
| 1775 | |
| 1776 | // Tuner: Change night mode. |
| 1777 | ACTION_TUNER_NIGHT_MODE = 309; |
| 1778 | |
| 1779 | // Tuner: Change night mode auto. |
| 1780 | ACTION_TUNER_NIGHT_MODE_AUTO = 310; |
| 1781 | |
| 1782 | // Tuner: Change night mode adjust dark theme. |
| 1783 | ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311; |
| 1784 | |
| 1785 | // Tuner: Change night mode adjust tint. |
| 1786 | ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312; |
| 1787 | |
| 1788 | // Tuner: Change night mode adjust brightness. |
| 1789 | ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313; |
| 1790 | |
| 1791 | // Tuner: Change do not disturb in volume panel. |
| 1792 | ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314; |
| 1793 | |
| 1794 | // Tuner: Change do not disturb volume buttons shortcut. |
| 1795 | ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315; |
Adrian Roos | 9046222 | 2016-02-17 15:45:09 -0800 | [diff] [blame] | 1796 | |
| 1797 | // Logs the action the user takes when an app crashed. |
| 1798 | ACTION_APP_CRASH = 316; |
| 1799 | |
| 1800 | // Logs the action the user takes when an app ANR'd. |
| 1801 | ACTION_APP_ANR = 317; |
Winson | d934290 | 2016-02-25 10:18:33 -0800 | [diff] [blame] | 1802 | |
| 1803 | // Logged when a user double taps the overview button to launch the previous task |
| 1804 | OVERVIEW_LAUNCH_PREVIOUS_TASK = 318; |
Jorim Jaggi | 275561a | 2016-02-23 10:11:02 -0500 | [diff] [blame] | 1805 | |
| 1806 | // Logged when we execute an app transition. This indicates the total delay from startActivity |
| 1807 | // until the app transition is starting to animate, in milliseconds. |
| 1808 | APP_TRANSITION_DELAY_MS = 319; |
| 1809 | |
| 1810 | // Logged when we execute an app transition. This indicates the reason why the transition |
| 1811 | // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons. |
| 1812 | APP_TRANSITION_REASON = 320; |
| 1813 | |
| 1814 | // Logged when we execute an app transition and we drew a starting window. This indicates the |
| 1815 | // delay from startActivity until the starting window was drawn. |
| 1816 | APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321; |
| 1817 | |
| 1818 | // Logged when we execute an app transition and all windows of the app got drawn. This indicates |
| 1819 | // the delay from startActivity until all windows have been drawn. |
| 1820 | APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322; |
| 1821 | |
| 1822 | // Logged when we execute an app transition. This indicates the component name of the current |
| 1823 | // transition. |
| 1824 | APP_TRANSITION_COMPONENT_NAME = 323; |
| 1825 | |
| 1826 | // Logged when we execute an app transition. This indicates whether the process was already |
| 1827 | // running. |
| 1828 | APP_TRANSITION_PROCESS_RUNNING = 324; |
| 1829 | |
| 1830 | // Logged when we execute an app transition. This indicates the device uptime in seconds when |
| 1831 | // the transition was executed. |
| 1832 | APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325; |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1833 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1834 | // ACTION: app requested access to a scoped directory, user granted it. |
| 1835 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES |
| 1836 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1837 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1838 | ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326; |
| 1839 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1840 | // ACTION: app requested access to a scoped directory, user denied it. |
| 1841 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES |
| 1842 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1843 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1844 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327; |
| 1845 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1846 | // ACTION: app requested access to a scoped directory, user granted it. |
| 1847 | // PACKAGE: app that requested access |
| 1848 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1849 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1850 | ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328; |
| 1851 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1852 | // ACTION: app requested access to a scoped directory, user denied it. |
| 1853 | // PACKAGE: app that requested access. |
| 1854 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1855 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1856 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329; |
| 1857 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1858 | // ACTION: app requested access to a directory user has already been granted |
| 1859 | // access before. |
| 1860 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES. |
| 1861 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1862 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1863 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330; |
| 1864 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1865 | // ACTION: app requested access to a directory user has already been granted |
| 1866 | // access before. |
| 1867 | // PACKAGE: app that requested access. |
| 1868 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1869 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1870 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331; |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 1871 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1872 | // ACTION: Logged when the user slides a notification and reveals the gear |
| 1873 | // beneath it. |
| 1874 | // CATEGORY: NOTIFICATION |
| 1875 | // OS: N |
Mady Mellor | a41587b | 2016-02-11 18:43:06 -0800 | [diff] [blame] | 1876 | ACTION_REVEAL_GEAR = 332; |
| 1877 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1878 | // ACTION: Logged when the user taps on the gear beneath a notification. |
| 1879 | // CATEGORY: NOTIFICATION |
| 1880 | // OS: N |
Mady Mellor | a41587b | 2016-02-11 18:43:06 -0800 | [diff] [blame] | 1881 | ACTION_TOUCH_GEAR = 333; |
| 1882 | |
Ruben Brunk | e24b9a6 | 2016-02-16 21:38:24 -0800 | [diff] [blame] | 1883 | // Logs that the user has edited the enabled VR listeners. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1884 | // CATEGORY: SETTINGS |
| 1885 | // OS: N |
Ruben Brunk | e24b9a6 | 2016-02-16 21:38:24 -0800 | [diff] [blame] | 1886 | VR_MANAGE_LISTENERS = 334; |
| 1887 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1888 | // Settings -> Accessibility -> Click after pointer stops moving |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1889 | // CATEGORY: SETTINGS |
| 1890 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1891 | ACCESSIBILITY_TOGGLE_AUTOCLICK = 335; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1892 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1893 | // Settings -> Sound |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1894 | // CATEGORY: SETTINGS |
| 1895 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1896 | SOUND = 336; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1897 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1898 | // Settings -> Notifications -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1899 | // CATEGORY: SETTINGS |
| 1900 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1901 | CONFIGURE_NOTIFICATION = 337; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1902 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1903 | // Settings -> Wi-Fi -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1904 | // CATEGORY: SETTINGS |
| 1905 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1906 | CONFIGURE_WIFI = 338; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1907 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1908 | // Settings -> Display -> Display size |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1909 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1910 | DISPLAY_SCREEN_ZOOM = 339; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1911 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1912 | // Settings -> Display -> Font size |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1913 | // CATEGORY: SETTINGS |
| 1914 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1915 | ACCESSIBILITY_FONT_SIZE = 340; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1916 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1917 | // Settings -> Data usage -> Cellular/Wi-Fi data usage |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1918 | // CATEGORY: SETTINGS |
| 1919 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1920 | DATA_USAGE_LIST = 341; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1921 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1922 | // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1923 | // CATEGORY: SETTINGS |
| 1924 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1925 | BILLING_CYCLE = 342; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1926 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1927 | // DATA_USAGE_LIST -> Any item or App info -> Data usage |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1928 | // CATEGORY: SETTINGS |
| 1929 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1930 | APP_DATA_USAGE = 343; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1931 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1932 | // Settings -> Language & input -> Language |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1933 | // CATEGORY: SETTINGS |
| 1934 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1935 | USER_LOCALE_LIST = 344; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1936 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1937 | // Settings -> Language & input -> Virtual keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1938 | // CATEGORY: SETTINGS |
| 1939 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1940 | VIRTUAL_KEYBOARDS = 345; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1941 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1942 | // Settings -> Language & input -> Physical keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1943 | // CATEGORY: SETTINGS |
| 1944 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1945 | PHYSICAL_KEYBOARDS = 346; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1946 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1947 | // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1948 | // CATEGORY: SETTINGS |
| 1949 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1950 | ENABLE_VIRTUAL_KEYBOARDS = 347; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1951 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1952 | // Settings -> Data usage -> Data Saver |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1953 | // CATEGORY: SETTINGS |
| 1954 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1955 | DATA_SAVER_SUMMARY = 348; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1956 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1957 | // Settings -> Data usage -> Data Saver -> Unrestricted data access |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1958 | // CATEGORY: SETTINGS |
| 1959 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1960 | DATA_USAGE_UNRESTRICTED_ACCESS = 349; |
| 1961 | |
| 1962 | // Used for generic logging of Settings Preference Persistence, should not be used |
| 1963 | // outside SharedPreferencesLogger. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1964 | // CATEGORY: SETTINGS |
| 1965 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1966 | ACTION_GENERIC_PACKAGE = 350; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1967 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1968 | // Settings -> Apps -> Gear -> Special access |
| 1969 | SPECIAL_ACCESS = 351; |
| 1970 | |
Muyuan Li | a212999 | 2016-03-03 18:30:39 -0800 | [diff] [blame] | 1971 | // Logs that the user docks window via shortcut key. |
| 1972 | WINDOW_DOCK_SHORTCUTS = 352; |
| 1973 | |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1974 | // User already denied access to the request folder; action takes an integer |
| 1975 | // representing the folder's index on Environment.STANDARD_DIRECTORIES |
Felipe Leme | db892b8 | 2016-03-17 18:56:20 -0700 | [diff] [blame] | 1976 | // (or -2 for root access, or -1 or unknown directory). |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1977 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353; |
| 1978 | |
| 1979 | // User already denied access to the request folder; action pass package name |
| 1980 | // of calling package. |
| 1981 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354; |
| 1982 | |
| 1983 | // User denied access to the request folder and checked 'Do not ask again'; |
| 1984 | // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES |
Felipe Leme | db892b8 | 2016-03-17 18:56:20 -0700 | [diff] [blame] | 1985 | // (or -2 for root access, or -1 or unknown directory). |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1986 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355; |
| 1987 | |
| 1988 | // User denied access to the request folder and checked 'Do not ask again'; |
| 1989 | // action pass package name of calling package. |
| 1990 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356; |
| 1991 | |
Winson | 3b6ba1a | 2016-03-22 15:37:54 -0700 | [diff] [blame] | 1992 | // Logged when a user dismisses all task in overview |
| 1993 | OVERVIEW_DISMISS_ALL = 357; |
| 1994 | |
Jason Monk | 96defbe | 2016-03-29 16:51:03 -0400 | [diff] [blame] | 1995 | // Quick Settings -> Edit |
| 1996 | QS_EDIT = 358; |
| 1997 | |
| 1998 | // Quick Settings -> Edit -> Overflow -> Reset |
| 1999 | ACTION_QS_EDIT_RESET = 359; |
| 2000 | |
| 2001 | // QS -> Edit - Drag a tile out of the active tiles. |
| 2002 | // The _SPEC contains either the spec of the tile or |
| 2003 | // the package of the 3rd party app in the PKG field. |
| 2004 | ACTION_QS_EDIT_REMOVE_SPEC = 360; |
| 2005 | ACTION_QS_EDIT_REMOVE = 361; |
| 2006 | |
| 2007 | // QS -> Edit - Drag a tile into the active tiles. |
| 2008 | // The _SPEC contains either the spec of the tile or |
| 2009 | // the package of the 3rd party app in the PKG field. |
| 2010 | ACTION_QS_EDIT_ADD_SPEC = 362; |
| 2011 | ACTION_QS_EDIT_ADD = 363; |
| 2012 | |
| 2013 | // QS -> Edit - Drag a tile within the active tiles. |
| 2014 | // The _SPEC contains either the spec of the tile or |
| 2015 | // the package of the 3rd party app in the PKG field. |
| 2016 | ACTION_QS_EDIT_MOVE_SPEC = 364; |
| 2017 | ACTION_QS_EDIT_MOVE = 365; |
| 2018 | |
| 2019 | // Long-press on a QS tile. Tile spec in package field. |
| 2020 | ACTION_QS_LONG_PRESS = 366; |
| 2021 | |
Anna Galusza | dad131f | 2016-03-22 13:49:02 -0700 | [diff] [blame] | 2022 | // OPEN: SUW Welcome Screen -> Vision Settings |
| 2023 | // CATEGORY: SETTINGS |
| 2024 | // OS: N |
| 2025 | SUW_ACCESSIBILITY = 367; |
| 2026 | |
Casey Burkhardt | f4e9803 | 2017-03-22 22:52:24 -0700 | [diff] [blame] | 2027 | // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O) |
| 2028 | // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap |
| 2029 | // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button |
Anna Galusza | dad131f | 2016-03-22 13:49:02 -0700 | [diff] [blame] | 2030 | // ACTION: New magnification gesture configuration is chosen |
| 2031 | // SUBTYPE: 0 is off, 1 is on |
| 2032 | // CATEGORY: SETTINGS |
| 2033 | // OS: N |
| 2034 | SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368; |
| 2035 | |
| 2036 | // OPEN: SUW Welcome Screen -> Vision Settings -> Font size |
| 2037 | // ACTION: New font size is chosen |
| 2038 | // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest |
| 2039 | // CATEGORY: SETTINGS |
| 2040 | // OS: N |
| 2041 | SUW_ACCESSIBILITY_FONT_SIZE = 369; |
| 2042 | |
| 2043 | // OPEN: SUW Welcome Screen -> Vision Settings -> Display size |
| 2044 | // ACTION: New display size is chosen |
| 2045 | // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest |
| 2046 | // CATEGORY: SETTINGS |
| 2047 | // OS: N |
| 2048 | SUW_ACCESSIBILITY_DISPLAY_SIZE = 370; |
| 2049 | |
| 2050 | // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack |
| 2051 | // ACTION: New screen reader configuration is chosen |
| 2052 | // SUBTYPE: 0 is off, 1 is on |
| 2053 | // CATEGORY: SETTINGS |
| 2054 | // OS: N |
| 2055 | SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371; |
| 2056 | |
Jason Monk | c362039 | 2016-03-30 15:46:03 -0400 | [diff] [blame] | 2057 | // ------- Begin N Settings conditionals ----- |
| 2058 | // Conditionals are the green bars at the top of the settings dashboard |
| 2059 | // All conditionals will have visible/hide events onResume/onPause |
| 2060 | // but they will also be used as extra ints in the |
| 2061 | // dismiss/expand/collapse/click/button events |
| 2062 | |
| 2063 | // swipe away conditional |
| 2064 | ACTION_SETTINGS_CONDITION_DISMISS = 372; |
| 2065 | |
| 2066 | // click on collapsed conditional or clicks expand button |
| 2067 | ACTION_SETTINGS_CONDITION_EXPAND = 373; |
| 2068 | |
| 2069 | // click collapse button on expanded conditional |
| 2070 | ACTION_SETTINGS_CONDITION_COLLAPSE = 374; |
| 2071 | |
| 2072 | // click main area of expanded conditional |
| 2073 | ACTION_SETTINGS_CONDITION_CLICK = 375; |
| 2074 | |
| 2075 | // click a direct button on expanded conditional |
| 2076 | ACTION_SETTINGS_CONDITION_BUTTON = 376; |
| 2077 | |
| 2078 | // Airplane mode on |
| 2079 | SETTINGS_CONDITION_AIRPLANE_MODE = 377; |
| 2080 | // AKA Data saver on |
| 2081 | SETTINGS_CONDITION_BACKGROUND_DATA = 378; |
| 2082 | // Battery saver on |
| 2083 | SETTINGS_CONDITION_BATTERY_SAVER = 379; |
| 2084 | // Cellular data off |
| 2085 | SETTINGS_CONDITION_CELLULAR_DATA = 380; |
| 2086 | // Do not disturb on |
| 2087 | SETTINGS_CONDITION_DND = 381; |
| 2088 | // Hotspot on |
| 2089 | SETTINGS_CONDITION_HOTSPOT = 382; |
| 2090 | // Work profile off |
| 2091 | SETTINGS_CONDITION_WORK_MODE = 383; |
| 2092 | |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 2093 | // ------- Begin N Settings suggestions ----- |
| 2094 | // Since suggestions come from system apps, suggestions will |
| 2095 | // have generic constants and the package providing the suggestion |
| 2096 | // will be put in the package field. For suggestions in the Settings |
| 2097 | // package, the class name will be filled in instead (since settings |
| 2098 | // provides several suggetions). |
| 2099 | |
| 2100 | // Settings shown/hidden on main settings dashboard. |
| 2101 | // These are actually visibility events, but visible/hidden doesn't |
| 2102 | // take a package, so these are being logged as actions. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 2103 | ACTION_SHOW_SETTINGS_SUGGESTION = 384; |
| 2104 | ACTION_HIDE_SETTINGS_SUGGESTION = 385; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 2105 | |
| 2106 | // Click on a suggestion. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 2107 | ACTION_SETTINGS_SUGGESTION = 386; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 2108 | |
| 2109 | // Suggestion -> Overflow -> Remove. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 2110 | ACTION_SETTINGS_DISMISS_SUGGESTION = 387; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 2111 | |
Jason Monk | 397df68 | 2016-03-28 15:48:34 -0400 | [diff] [blame] | 2112 | // Settings > Apps > Gear > Special Access > Premium SMS access |
| 2113 | PREMIUM_SMS_ACCESS = 388; |
| 2114 | |
Jorim Jaggi | 29379ec | 2016-04-11 23:43:42 -0700 | [diff] [blame] | 2115 | // Logged when the user resizes the docked stack. Arguments: |
| 2116 | // 0: Split 50:50 |
| 2117 | // 1: Docked smaller |
| 2118 | // 2: Docked larger |
| 2119 | ACTION_WINDOW_DOCK_RESIZE = 389; |
| 2120 | |
| 2121 | // User exits split-screen by dragging the divider to the side of the screen. Arguments |
| 2122 | // 0: Docked gets maximized |
| 2123 | // 1: Fullscreen gets maximized |
| 2124 | ACTION_WINDOW_UNDOCK_MAX = 390; |
| 2125 | |
| 2126 | // User tried to dock an unresizable app. |
| 2127 | ACTION_WINDOW_DOCK_UNRESIZABLE = 391; |
| 2128 | |
Julia Reynolds | 4d920ff | 2016-04-06 20:31:05 -0400 | [diff] [blame] | 2129 | // System UI Tuner > Other > Power notification controls |
| 2130 | TUNER_POWER_NOTIFICATION_CONTROLS = 392; |
| 2131 | |
| 2132 | // System UI Tuner > Other > Power notification controls > Toggle on/off |
| 2133 | ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393; |
| 2134 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2135 | // Action: user enable / disabled data saver using Settings |
| 2136 | // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle |
| 2137 | // VALUE: 1 for enabled, 0 for disabled |
| 2138 | // CATEGORY: SETTINGS |
| 2139 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 2140 | ACTION_DATA_SAVER_MODE = 394; |
| 2141 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2142 | // User whitelisted an app for Data Saver mode; action pass package name of app |
| 2143 | // Action: user enable / disabled data saver using Settings |
| 2144 | // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on |
| 2145 | // or |
| 2146 | // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on |
| 2147 | // VALUE: package name of APP |
| 2148 | // CATEGORY: SETTINGS |
| 2149 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 2150 | ACTION_DATA_SAVER_WHITELIST = 395; |
| 2151 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2152 | // User blacklisted an app for Data Saver mode; action pass package name of app |
| 2153 | // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off |
| 2154 | // VALUE: package name of APP |
| 2155 | // CATEGORY: SETTINGS |
| 2156 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 2157 | ACTION_DATA_SAVER_BLACKLIST = 396; |
| 2158 | |
Adrian Roos | ceeb04c | 2016-04-25 14:00:54 -0700 | [diff] [blame] | 2159 | // User opened a remote input view associated with a notification. Passes package name of app |
| 2160 | // that posted the notification. Note that this can also happen transiently during notification |
| 2161 | // reinflation. |
| 2162 | ACTION_REMOTE_INPUT_OPEN = 397; |
| 2163 | |
| 2164 | // User attempt to send data through a remote input view associated with a notification. |
| 2165 | // Passes package name of app that posted the notification. May succeed or fail. |
| 2166 | ACTION_REMOTE_INPUT_SEND = 398; |
| 2167 | |
| 2168 | // Failed attempt to send data through a remote input view associated with a |
| 2169 | // notification. Passes package name of app that posted the notification. |
| 2170 | ACTION_REMOTE_INPUT_FAIL = 399; |
| 2171 | |
| 2172 | // User closed a remote input view associated with a notification. Passes package name of app |
| 2173 | // that posted the notification. Note that this can also happen transiently during notification |
| 2174 | // reinflation. |
| 2175 | ACTION_REMOTE_INPUT_CLOSE = 400; |
| 2176 | |
Tony Mak | 7a5b17bb | 2016-04-29 10:27:48 +0100 | [diff] [blame] | 2177 | // OPEN: Settings > Accounts > Work profile settings |
| 2178 | // CATEGORY: SETTINGS |
| 2179 | ACCOUNTS_WORK_PROFILE_SETTINGS = 401; |
| 2180 | |
Jason Monk | 25118d1 | 2016-05-10 13:25:50 -0400 | [diff] [blame] | 2181 | // Settings -> Dev options -> Convert to file encryption |
| 2182 | CONVERT_FBE = 402; |
| 2183 | |
| 2184 | // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT... |
| 2185 | CONVERT_FBE_CONFIRM = 403; |
| 2186 | |
| 2187 | // Settings -> Dev options -> Running services |
| 2188 | RUNNING_SERVICES = 404; |
| 2189 | |
Jason Monk | a1f697f | 2016-05-06 15:09:44 -0400 | [diff] [blame] | 2190 | // The dialog shown by 3P intent to change current webview implementation. |
| 2191 | WEBVIEW_IMPLEMENTATION = 405; |
| 2192 | |
Julia Reynolds | 8f3e66f | 2016-05-12 10:33:47 -0400 | [diff] [blame] | 2193 | // Settings launched from expanded quick settings. |
| 2194 | ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406; |
| 2195 | |
Chris Wren | 698b170 | 2016-05-23 11:16:32 -0400 | [diff] [blame] | 2196 | // Notification expansion state toggled by the expand affordance. |
| 2197 | ACTION_NOTIFICATION_EXPANDER = 407; |
| 2198 | |
| 2199 | // Notification group expansion state toggled by the expand affordance. |
| 2200 | ACTION_NOTIFICATION_GROUP_EXPANDER = 408; |
| 2201 | |
Chris Wren | 7ee8418 | 2016-05-27 13:34:02 -0400 | [diff] [blame] | 2202 | |
Chris Wren | 6abeeb9 | 2016-05-26 14:44:38 -0400 | [diff] [blame] | 2203 | // Notification expansion state toggled by the expand gesture. |
| 2204 | ACTION_NOTIFICATION_GESTURE_EXPANDER = 409; |
| 2205 | |
| 2206 | // Notification group expansion state toggled by the expand gesture. |
| 2207 | ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410; |
| 2208 | |
Bhavik Singh | 3451da4 | 2016-06-01 18:25:59 -0700 | [diff] [blame] | 2209 | // User performs gesture that activates the ambient display |
| 2210 | // 1: Gesture performed is Nudge |
| 2211 | // 2: Gesture performed is Pickup |
| 2212 | // 4: Gesture performed is Double Tap |
| 2213 | ACTION_AMBIENT_GESTURE = 411; |
| 2214 | |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2215 | // ---- End N Constants, all N constants go above this line ---- |
| 2216 | |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2217 | // ------- Begin N App Disambig Shade ----- |
| 2218 | // Application disambig shade opened or closed with a featured app. |
| 2219 | // These are actually visibility events, but visible/hidden doesn't |
| 2220 | // take a package, so these are being logged as actions. |
| 2221 | // Package: Calling app on open, called app on close |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2222 | ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451; |
| 2223 | ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2224 | |
| 2225 | // Application disambig shade opened or closed without a featured app. |
| 2226 | // These are actually visibility events, but visible/hidden doesn't |
| 2227 | // take a package, so these are being logged as actions. |
| 2228 | // Package: Calling app on open, called app on close |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2229 | ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453; |
| 2230 | ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2231 | |
| 2232 | // User opens in an app by pressing “Always” in the application disambig shade. |
| 2233 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2234 | ACTION_APP_DISAMBIG_ALWAYS = 455; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2235 | |
| 2236 | // User opens in an app by pressing “Just Once” in the application disambig shade. |
| 2237 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2238 | ACTION_APP_DISAMBIG_JUST_ONCE = 456; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2239 | |
| 2240 | // User opens in an app by tapping on its name in the application disambig shade. |
| 2241 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2242 | ACTION_APP_DISAMBIG_TAP = 457; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2243 | |
Daniel Nishi | 010aa49 | 2016-05-11 09:42:24 -0700 | [diff] [blame] | 2244 | // OPEN: Settings > Internal storage > Storage manager |
| 2245 | // CATEGORY: SETTINGS |
| 2246 | STORAGE_MANAGER_SETTINGS = 458; |
| 2247 | |
Doris Ling | 5b2c0ad | 2016-05-25 14:03:14 -0700 | [diff] [blame] | 2248 | // OPEN: Settings -> Gestures |
| 2249 | // CATEGORY: SETTINGS |
| 2250 | SETTINGS_GESTURES = 459; |
| 2251 | |
Daniel Nishi | 597e67f | 2016-05-18 13:56:13 -0700 | [diff] [blame] | 2252 | // ------ Begin Deletion Helper ------ |
| 2253 | // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle |
| 2254 | // SUBTYPE: false is off, true is on |
| 2255 | // CATEGORY: SETTINGS |
| 2256 | ACTION_DELETION_SELECTION_PHOTOS = 460; |
Chris Wren | c6a9857 | 2016-06-02 15:11:48 -0400 | [diff] [blame] | 2257 | |
Daniel Nishi | 597e67f | 2016-05-18 13:56:13 -0700 | [diff] [blame] | 2258 | // ACTION: Settings > Storage > Free Up Space > Apps > Toggle |
| 2259 | // SUBTYPE: false is off, true is on |
| 2260 | // CATEGORY: SETTINGS |
| 2261 | ACTION_DELETION_SELECTION_ALL_APPS = 461; |
| 2262 | |
| 2263 | // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app |
| 2264 | // CATEGORY: SETTINGS |
| 2265 | // PACKAGE: Unchecked app |
| 2266 | ACTION_DELETION_SELECTION_APP_ON = 462; |
| 2267 | |
| 2268 | // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app |
| 2269 | // CATEGORY: SETTINGS |
| 2270 | // PACKAGE: Checked app |
| 2271 | ACTION_DELETION_SELECTION_APP_OFF = 463; |
| 2272 | |
| 2273 | // ACTION: Settings > Storage > Free Up Space > Apps > Click category |
| 2274 | // SUBTYPE: false is expanded, true is collapsed |
| 2275 | // CATEGORY: SETTINGS |
| 2276 | ACTION_DELETION_APPS_COLLAPSED = 464; |
| 2277 | |
| 2278 | // ACTION: Settings > Storage > Free Up Space > Downloads > Check On |
| 2279 | // SUBTYPE: false is off, true is on |
| 2280 | // CATEGORY: SETTINGS |
| 2281 | ACTION_DELETION_SELECTION_DOWNLOADS = 465; |
| 2282 | |
| 2283 | // ACTION: Settings > Storage > Free Up Space > Downloads > Click category |
| 2284 | // SUBTYPE: false is expanded, true is collapsed |
| 2285 | // CATEGORY: SETTINGS |
| 2286 | ACTION_DELETION_DOWNLOADS_COLLAPSED = 466; |
| 2287 | |
| 2288 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB |
| 2289 | // CATEGORY: SETTINGS |
| 2290 | ACTION_DELETION_HELPER_CLEAR = 467; |
| 2291 | |
| 2292 | // ACTION: Settings > Storage > Free Up Space > Cancel |
| 2293 | // CATEGORY: SETTINGS |
| 2294 | ACTION_DELETION_HELPER_CANCEL = 468; |
| 2295 | |
| 2296 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove |
| 2297 | // CATEGORY: SETTINGS |
| 2298 | ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469; |
| 2299 | |
| 2300 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel |
| 2301 | // CATEGORY: SETTINGS |
| 2302 | ACTION_DELETION_HELPER_REMOVE_CANCEL = 470; |
| 2303 | |
| 2304 | // Deletion helper encountered an error during package deletion. |
| 2305 | ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471; |
| 2306 | |
| 2307 | // Deletion helper encountered an error during downloads folder deletion. |
| 2308 | ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472; |
| 2309 | |
| 2310 | // Deletion helper encountered an error during photo and video deletion. |
| 2311 | ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473; |
| 2312 | |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2313 | // OPEN: Settings (root page if there are multiple tabs) |
| 2314 | // CATEGORY: SETTINGS |
| 2315 | DASHBOARD_CONTAINER = 474; |
| 2316 | |
| 2317 | // OPEN: Settings -> SUPPORT TAB |
| 2318 | // CATEGORY: SETTINGS |
| 2319 | SUPPORT_FRAGMENT = 475; |
| 2320 | |
| 2321 | // ACTION: Settings -> Select summary tab. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2322 | // CATEGORY: SETTINGS |
jackqdyulei | a2a1434 | 2017-02-28 16:20:48 -0800 | [diff] [blame] | 2323 | ACTION_SELECT_SUMMARY = 476; |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2324 | |
| 2325 | // ACTION: Settings -> Select support tab. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2326 | // CATEGORY: SETTINGS |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2327 | ACTION_SELECT_SUPPORT_FRAGMENT = 477; |
| 2328 | |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2329 | // ACTION: Settings -> Support -> Tips & tricks |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2330 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2331 | ACTION_SUPPORT_TIPS_AND_TRICKS = 478; |
| 2332 | |
| 2333 | // ACTION: Settings -> Support -> Help & feedback |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2334 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2335 | ACTION_SUPPORT_HELP_AND_FEEDBACK = 479; |
| 2336 | |
| 2337 | // ACTION: Settings -> Support -> Sign in |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2338 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2339 | ACTION_SUPPORT_SIGN_IN = 480; |
| 2340 | |
| 2341 | // ACTION: Settings -> Support -> Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2342 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2343 | ACTION_SUPPORT_PHONE = 481; |
| 2344 | |
| 2345 | // ACTION: Settings -> Support -> Chat |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2346 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2347 | ACTION_SUPPORT_CHAT = 482; |
| 2348 | |
| 2349 | // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2350 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2351 | ACTION_SUPPORT_DISCLAIMER_CANCEL = 483; |
| 2352 | |
| 2353 | // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2354 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2355 | ACTION_SUPPORT_DISCLAIMER_OK = 484; |
| 2356 | |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2357 | // ACTION: Settings -> Support -> Toll-Free Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2358 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2359 | ACTION_SUPPORT_DAIL_TOLLFREE = 485; |
| 2360 | |
| 2361 | // ACTION: Settings -> Support -> "Travel Abroad" Button |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2362 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2363 | ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486; |
| 2364 | |
| 2365 | // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2366 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2367 | ACTION_SUPPORT_DIAL_TOLLED = 487; |
| 2368 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2369 | // OPEN: Settings > Display > Night Light |
Justin Klaassen | 911e889 | 2016-06-21 18:24:24 -0700 | [diff] [blame] | 2370 | // CATEGORY: SETTINGS |
| 2371 | NIGHT_DISPLAY_SETTINGS = 488; |
| 2372 | |
Daniel Nishi | ff69a4b | 2016-07-12 13:55:57 -0700 | [diff] [blame] | 2373 | // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager |
jackqdyulei | a2a1434 | 2017-02-28 16:20:48 -0800 | [diff] [blame] | 2374 | // SUBTYPE: false is off, true is on |
Daniel Nishi | ff69a4b | 2016-07-12 13:55:57 -0700 | [diff] [blame] | 2375 | ACTION_TOGGLE_STORAGE_MANAGER = 489; |
| 2376 | |
Jason Monk | 484fd36 | 2016-07-13 15:24:32 -0400 | [diff] [blame] | 2377 | // Settings launched from collapsed quick settings. |
| 2378 | ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490; |
| 2379 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2380 | // OPEN: QS Night Light tile shown |
| 2381 | // ACTION: QS Night Light tile tapped |
Justin Klaassen | 1379090 | 2016-06-21 20:28:12 -0700 | [diff] [blame] | 2382 | // SUBTYPE: 0 is off, 1 is on |
| 2383 | // CATEGORY: QUICK_SETTINGS |
| 2384 | QS_NIGHT_DISPLAY = 491; |
| 2385 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2386 | // Night Light on |
| 2387 | SETTINGS_CONDITION_NIGHT_DISPLAY = 492; |
| 2388 | |
Doris Ling | 3c00afb | 2016-07-19 17:04:21 -0700 | [diff] [blame] | 2389 | // System navigation key up. |
| 2390 | ACTION_SYSTEM_NAVIGATION_KEY_UP = 493; |
| 2391 | |
| 2392 | // System navigation key down. |
| 2393 | ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494; |
| 2394 | |
Doris Ling | 6dd3e46 | 2016-08-04 13:17:27 -0700 | [diff] [blame] | 2395 | // OPEN: Settings > Display -> Ambient Display |
| 2396 | // CATEGORY: SETTINGS |
| 2397 | ACTION_AMBIENT_DISPLAY = 495; |
| 2398 | |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 2399 | // ---- End N-MR1 Constants, all N-MR1 constants go above this line ---- |
| 2400 | |
Adrian Roos | 1cffe3c | 2016-11-28 15:46:06 -0800 | [diff] [blame] | 2401 | // ACTION: The lockscreen gets shown because the SIM card was removed |
| 2402 | // SUBTYPE: false: device was previously unlocked, true: device was previously locked |
| 2403 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 2404 | // OS: N-MR2 |
| 2405 | ACTION_LOCK_BECAUSE_SIM_REMOVED = 496; |
| 2406 | |
| 2407 | // ---- End N-MR2 Constants, all N-MR2 constants go above this line ---- |
| 2408 | |
Clara Bayarri | c17a598 | 2016-04-15 12:26:47 +0100 | [diff] [blame] | 2409 | // ------- Begin N Keyboard Shortcuts Helper ----- |
| 2410 | // Keyboard Shortcuts Helper is opened/closed. |
Chris Wren | e7396ff | 2016-06-02 17:08:21 -0400 | [diff] [blame] | 2411 | KEYBOARD_SHORTCUTS_HELPER = 500; |
Clara Bayarri | c17a598 | 2016-04-15 12:26:47 +0100 | [diff] [blame] | 2412 | |
Philip P. Moltmann | 2e30126 | 2016-06-16 12:39:54 -0700 | [diff] [blame] | 2413 | // OPEN: Print Preview screen |
| 2414 | // Package: Package of app where print job is from |
| 2415 | PRINT_PREVIEW = 501; |
| 2416 | |
| 2417 | // OPEN: User expands full print job options shade in print preview. |
| 2418 | PRINT_JOB_OPTIONS = 502; |
| 2419 | |
| 2420 | // OPEN: “All Printers” screen for selecting printer |
| 2421 | // Subtype: # of printers listed |
| 2422 | PRINT_ALL_PRINTERS = 503; |
| 2423 | |
| 2424 | // OPEN: “Add Printers” screen for adding printers |
| 2425 | // Subtype: # of enabled print service listed |
| 2426 | PRINT_ADD_PRINTERS = 504; |
| 2427 | |
| 2428 | // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview) |
| 2429 | // Package: Package of print service. |
| 2430 | ACTION_PRINT = 505; |
| 2431 | |
| 2432 | // ACTION: User selects a printer from the dropdown in the print preview screen. This also |
| 2433 | // Count all ACTION_PRINTER_SELECT_ALL actions. |
| 2434 | // Package: Package of print service tied to printer |
| 2435 | ACTION_PRINTER_SELECT_DROPDOWN = 506; |
| 2436 | |
| 2437 | // ACTION: User selects a printer from the “All printers” screen. |
| 2438 | // Package: Package of print service tied to printer |
| 2439 | ACTION_PRINTER_SELECT_ALL = 507; |
| 2440 | |
| 2441 | // ACTION: User changes an option for the print job from print preview. |
| 2442 | // Subtype: 1: Copies |
| 2443 | // 2: Color mode |
| 2444 | // 3: Duplex mode |
| 2445 | // 4: Media (==Paper) size |
| 2446 | // 5: Orientation |
| 2447 | // 6: Page range |
| 2448 | // Package: Package of print service tied to printer |
| 2449 | ACTION_PRINT_JOB_OPTIONS = 508; |
| 2450 | |
| 2451 | // ACTION: User searches for printer from All Printers |
| 2452 | ACTION_PRINTER_SEARCH = 509; |
| 2453 | |
| 2454 | // ACTION: User selects “Add print service” button from All Printers |
| 2455 | ACTION_PRINT_SERVICE_ADD = 510; |
| 2456 | |
| 2457 | // ACTION: User Enables/Disables Print Service via any means. |
| 2458 | // Subtype: 0: Enabled |
| 2459 | // 1: Disabled |
| 2460 | ACTION_PRINT_SERVICE_TOGGLE = 511; |
| 2461 | |
| 2462 | // ACTION: User installs print recommended print service |
| 2463 | // Package: Package of print service |
| 2464 | ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512; |
| 2465 | |
Doris Ling | 88a6b16 | 2016-08-08 16:17:43 -0700 | [diff] [blame] | 2466 | // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support |
| 2467 | // SUBTYPE: sub settings classname |
| 2468 | ACTION_SETTING_HELP_AND_FEEDBACK = 513; |
| 2469 | |
Fan Zhang | 92c6038 | 2016-08-08 14:03:53 -0700 | [diff] [blame] | 2470 | // OPEN: Settings > Language & input > Personal dictionary (single locale) |
| 2471 | USER_DICTIONARY_SETTINGS = 514; |
| 2472 | |
| 2473 | // OPEN: Settings > Date & time > Select time zone |
| 2474 | ZONE_PICKER = 515; |
| 2475 | |
| 2476 | // OPEN: Settings > Security > Device administrators |
| 2477 | DEVICE_ADMIN_SETTINGS = 516; |
| 2478 | |
Mahaver Chopra | c8c97c2 | 2016-08-26 13:59:42 +0100 | [diff] [blame] | 2479 | // ACTION: Managed provisioning was launched to set this package as DPC app. |
| 2480 | // PACKAGE: DPC's package name. |
| 2481 | PROVISIONING_DPC_PACKAGE_NAME = 517; |
| 2482 | |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2483 | // ACTION: Managed provisioning triggered DPC installation. |
| 2484 | // PACKAGE: Package name of package which installed DPC. |
| 2485 | PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518; |
| 2486 | |
| 2487 | // ACTION: Logged when provisioning activity finishes. |
| 2488 | // TIME: Indicates time taken by provisioning activity to finish in MS. |
| 2489 | PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519; |
| 2490 | |
| 2491 | // ACTION: Logged when preprovisioning activity finishes. |
| 2492 | // TIME: Indicates time taken by preprovisioning activity to finish in MS. |
| 2493 | PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520; |
| 2494 | |
| 2495 | // ACTION: Logged when encrypt device activity finishes. |
| 2496 | // TIME: Indicates time taken by encrypt device activity to finish in MS. |
| 2497 | PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521; |
| 2498 | |
| 2499 | // ACTION: Logged when web activity finishes. |
| 2500 | // TIME: Indicates total time taken by web activity to finish in MS. |
| 2501 | PROVISIONING_WEB_ACTIVITY_TIME_MS = 522; |
| 2502 | |
| 2503 | // ACTION: Logged when trampoline activity finishes. |
| 2504 | // TIME: Indicates total time taken by trampoline activity to finish in MS. |
| 2505 | PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523; |
| 2506 | |
| 2507 | // ACTION: Logged when encryption activity finishes. |
| 2508 | // TIME: Indicates total time taken by post encryption activity to finish in MS. |
| 2509 | PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524; |
| 2510 | |
| 2511 | // ACTION: Logged when finalization activity finishes. |
| 2512 | // TIME: Indicates time taken by finalization activity to finish in MS. |
| 2513 | PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525; |
Mahaver Chopra | c8c97c2 | 2016-08-26 13:59:42 +0100 | [diff] [blame] | 2514 | |
Fan Zhang | 3bf54dd | 2016-08-23 16:10:25 -0700 | [diff] [blame] | 2515 | // OPEN: Settings Support > Phone/Chat -> Disclaimer |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2516 | DIALOG_SUPPORT_DISCLAIMER = 526; |
Fan Zhang | 3bf54dd | 2016-08-23 16:10:25 -0700 | [diff] [blame] | 2517 | |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2518 | // OPEN: Settings Support > Travel abroad |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2519 | DIALOG_SUPPORT_PHONE = 527; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2520 | |
| 2521 | // OPEN: Settings > Security > Factory Reset Protection dialog |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2522 | DIALOG_FRP = 528; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2523 | |
| 2524 | // OPEN: Settings > Custom list preference with confirmation message |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2525 | DIALOG_CUSTOM_LIST_CONFIRMATION = 529; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2526 | |
| 2527 | // OPEN: Settings > APN Editor > Error dialog |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2528 | DIALOG_APN_EDITOR_ERROR = 530; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2529 | |
| 2530 | // OPEN: Settings > Users > Edit owner info dialog |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2531 | DIALOG_OWNER_INFO_SETTINGS = 531; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2532 | |
Fan Zhang | c1352ae | 2016-09-16 12:46:11 -0700 | [diff] [blame] | 2533 | // OPEN: Settings > Security > Use one lock dialog |
| 2534 | DIALOG_UNIFICATION_CONFIRMATION = 532; |
| 2535 | |
| 2536 | // OPEN: Settings > Security > User Credential |
| 2537 | DIALOG_USER_CREDENTIAL = 533; |
| 2538 | |
| 2539 | // OPEN: Settings > Accounts > Remove account |
| 2540 | DIALOG_REMOVE_USER = 534; |
| 2541 | |
| 2542 | // OPEN: Settings > Accounts > Confirm auto sync dialog |
| 2543 | DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535; |
| 2544 | |
| 2545 | // OPEN: Settings > Apps > Dialog for running service details |
| 2546 | DIALOG_RUNNIGN_SERVICE = 536; |
| 2547 | |
| 2548 | // OPEN: Settings > Dialog for hiding home settings |
| 2549 | DIALOG_NO_HOME = 537; |
| 2550 | |
| 2551 | // OPEN: Settings > Bluetooth > Rename this device |
| 2552 | DIALOG_BLUETOOTH_RENAME = 538; |
| 2553 | |
| 2554 | // OPEN: Settings > Bluetooth > Paired device profile |
| 2555 | DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539; |
| 2556 | |
| 2557 | // OPEN: Settings > Battery optimization > details for app |
| 2558 | DIALOG_HIGH_POWER_DETAILS = 540; |
| 2559 | |
| 2560 | // OPEN: Settings > Keyboard > Show keyboard layout dialog |
| 2561 | DIALOG_KEYBOARD_LAYOUT = 541; |
| 2562 | |
| 2563 | // OPEN: Settings > Wifi > WPS Setup dialog |
| 2564 | DIALOG_WPS_SETUP = 542; |
| 2565 | |
| 2566 | // OPEN: Settings > WIFI Scan permission dialog |
| 2567 | DIALOG_WIFI_SCAN_MODE = 543; |
| 2568 | |
| 2569 | // OPEN: Settings > WIFI Setup > Skip Wifi dialog |
| 2570 | DIALOG_WIFI_SKIP = 544; |
| 2571 | |
| 2572 | // OPEN: Settings > Wireless > VPN > Config dialog |
| 2573 | DIALOG_LEGACY_VPN_CONFIG = 545; |
| 2574 | |
| 2575 | // OPEN: Settings > Wireless > VPN > Config dialog for app |
| 2576 | DIALOG_VPN_APP_CONFIG = 546; |
| 2577 | |
| 2578 | // OPEN: Settings > Wireless > VPN > Cannot connect dialog |
| 2579 | DIALOG_VPN_CANNOT_CONNECT = 547; |
| 2580 | |
| 2581 | // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog |
| 2582 | DIALOG_VPN_REPLACE_EXISTING = 548; |
| 2583 | |
| 2584 | // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog |
| 2585 | DIALOG_BILLING_CYCLE = 549; |
| 2586 | |
| 2587 | // OPEN: Settings > Billing cycle > Edit data limit/warning dialog |
| 2588 | DIALOG_BILLING_BYTE_LIMIT = 550; |
| 2589 | |
| 2590 | // OPEN: Settings > Billing cycle > turn on data limit dialog |
| 2591 | DIALOG_BILLING_CONFIRM_LIMIT = 551; |
| 2592 | |
| 2593 | // OPEN: Settings > Service > Turn off notification access dialog |
| 2594 | DIALOG_DISABLE_NOTIFICATION_ACCESS = 552; |
| 2595 | |
| 2596 | // OPEN: Settings > Sound > Use personal sound for work profile dialog |
| 2597 | DIALOG_UNIFY_SOUND_SETTINGS = 553; |
| 2598 | |
| 2599 | // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted. |
| 2600 | DIALOG_ZEN_ACCESS_GRANT = 554; |
| 2601 | |
| 2602 | // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked. |
| 2603 | DIALOG_ZEN_ACCESS_REVOKE = 555; |
| 2604 | |
| 2605 | // OPEN: Settings > Zen mode > Dialog that picks time for zen mode. |
| 2606 | DIALOG_ZEN_TIMEPICKER = 556; |
| 2607 | |
| 2608 | // OPEN: Settings > Apps > Dialog that informs user to allow service access for app. |
| 2609 | DIALOG_SERVICE_ACCESS_WARNING = 557; |
| 2610 | |
| 2611 | // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data) |
| 2612 | DIALOG_APP_INFO_ACTION = 558; |
| 2613 | |
| 2614 | // OPEN: Settings > Storage > Dialog for forgetting a storage device |
| 2615 | DIALOG_VOLUME_FORGET = 559; |
| 2616 | |
| 2617 | // OPEN: Settings > Storage > Dialog warning that a volume is slow |
| 2618 | DIALOG_VOLUME_SLOW_WARNING = 560; |
| 2619 | |
| 2620 | // OPEN: Settings > Storage > Dialog for initializing a volume |
| 2621 | DIALOG_VOLUME_INIT = 561; |
| 2622 | |
| 2623 | // OPEN: Settings > Storage > Dialog for unmounting a volume |
| 2624 | DIALOG_VOLUME_UNMOUNT = 562; |
| 2625 | |
| 2626 | // OPEN: Settings > Storage > Dialog for renaming a volume |
| 2627 | DIALOG_VOLUME_RENAME = 563; |
| 2628 | |
| 2629 | // OPEN: Settings > Storage > Dialog for clear cache |
| 2630 | DIALOG_STORAGE_CLEAR_CACHE = 564; |
| 2631 | |
| 2632 | // OPEN: Settings > Storage > Dialog for system info |
| 2633 | DIALOG_STORAGE_SYSTEM_INFO = 565; |
| 2634 | |
| 2635 | // OPEN: Settings > Storage > Dialog for other info |
| 2636 | DIALOG_STORAGE_OTHER_INFO = 566; |
| 2637 | |
| 2638 | // OPEN: Settings > Storage > Dialog for user info |
| 2639 | DIALOG_STORAGE_USER_INFO = 567; |
| 2640 | |
| 2641 | // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon. |
| 2642 | DIALOG_FINGERPRINT_ICON_TOUCH = 568; |
| 2643 | |
| 2644 | // OPEN: Settings > Add fingerprint > Error dialog |
| 2645 | DIALOG_FINGERPINT_ERROR = 569; |
| 2646 | |
| 2647 | // OPEN: Settings > Fingerprint > Rename or delete dialog |
| 2648 | DIALOG_FINGERPINT_EDIT = 570; |
| 2649 | |
| 2650 | // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint |
| 2651 | DIALOG_FINGERPINT_DELETE_LAST = 571; |
| 2652 | |
| 2653 | // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup. |
| 2654 | DIALOG_FINGERPRINT_CANCEL_SETUP = 572; |
| 2655 | |
| 2656 | // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely. |
| 2657 | DIALOG_FINGERPRINT_SKIP_SETUP = 573; |
| 2658 | |
Fan Zhang | 5e9f69c | 2016-09-19 17:44:39 -0700 | [diff] [blame] | 2659 | // OPEN: Settings > Proxy Selector error dialog |
| 2660 | DIALOG_PROXY_SELECTOR_ERROR = 574; |
| 2661 | |
| 2662 | // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog |
| 2663 | DIALOG_WIFI_P2P_DISCONNECT = 575; |
| 2664 | |
| 2665 | // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog |
| 2666 | DIALOG_WIFI_P2P_CANCEL_CONNECT = 576; |
| 2667 | |
| 2668 | // OPEN: Settings > Wifi > P2P Settings > Rename dialog |
| 2669 | DIALOG_WIFI_P2P_RENAME = 577; |
| 2670 | |
| 2671 | // OPEN: Settings > Wifi > P2P Settings > Forget group dialog |
| 2672 | DIALOG_WIFI_P2P_DELETE_GROUP = 578; |
| 2673 | |
| 2674 | // OPEN: Settings > APN > Restore default dialog |
| 2675 | DIALOG_APN_RESTORE_DEFAULT = 579; |
| 2676 | |
| 2677 | // OPEN: Settings > Dream > When to dream dialog |
| 2678 | DIALOG_DREAM_START_DELAY = 580; |
| 2679 | |
| 2680 | // OPEN: Settings > Encryption interstitial accessibility warning dialog |
| 2681 | DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581; |
| 2682 | |
| 2683 | // OPEN: Settings > Tether > AP setting dialog |
| 2684 | DIALOG_AP_SETTINGS = 582; |
| 2685 | |
| 2686 | // OPEN: Settings > Acessibility > Enable accessiblity service dialog |
| 2687 | DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583; |
| 2688 | |
| 2689 | // OPEN: Settings > Acessibility > Disable accessiblity service dialog |
| 2690 | DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584; |
| 2691 | |
| 2692 | // OPEN: Settings > Account > Remove account dialog |
| 2693 | DIALOG_ACCOUNT_SYNC_REMOVE = 585; |
| 2694 | |
| 2695 | // OPEN: Settings > Account > Remove account failed dialog |
| 2696 | DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586; |
| 2697 | |
| 2698 | // OPEN: Settings > Account > Cannot do onetime sync dialog |
| 2699 | DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587; |
| 2700 | |
| 2701 | // OPEN: Settings > Display > Night light > Set start time dialog |
| 2702 | DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588; |
| 2703 | |
| 2704 | // OPEN: Settings > Display > Night light > Set end time dialog |
| 2705 | DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589; |
| 2706 | |
| 2707 | // OPEN: Settings > User > Edit info dialog |
| 2708 | DIALOG_USER_EDIT = 590; |
| 2709 | |
| 2710 | // OPEN: Settings > User > Confirm remove dialog |
| 2711 | DIALOG_USER_REMOVE = 591; |
| 2712 | |
| 2713 | // OPEN: Settings > User > Enable calling dialog |
| 2714 | DIALOG_USER_ENABLE_CALLING = 592; |
| 2715 | |
| 2716 | // OPEN: Settings > User > Enable calling and sms dialog |
| 2717 | DIALOG_USER_ENABLE_CALLING_AND_SMS = 593; |
| 2718 | |
| 2719 | // OPEN: Settings > User > Cannot manage device message dialog |
| 2720 | DIALOG_USER_CANNOT_MANAGE = 594; |
| 2721 | |
| 2722 | // OPEN: Settings > User > Add user dialog |
| 2723 | DIALOG_USER_ADD = 595; |
| 2724 | |
| 2725 | // OPEN: Settings > User > Setup user dialog |
| 2726 | DIALOG_USER_SETUP = 596; |
| 2727 | |
| 2728 | // OPEN: Settings > User > Setup profile dialog |
| 2729 | DIALOG_USER_SETUP_PROFILE = 597; |
| 2730 | |
| 2731 | // OPEN: Settings > User > Choose user type dialog |
| 2732 | DIALOG_USER_CHOOSE_TYPE = 598; |
| 2733 | |
| 2734 | // OPEN: Settings > User > Need lockscreen dialog |
| 2735 | DIALOG_USER_NEED_LOCKSCREEN = 599; |
| 2736 | |
| 2737 | // OPEN: Settings > User > Confirm exit guest mode dialog |
| 2738 | DIALOG_USER_CONFIRM_EXIT_GUEST = 600; |
| 2739 | |
| 2740 | // OPEN: Settings > User > Edit user profile dialog |
| 2741 | DIALOG_USER_EDIT_PROFILE = 601; |
| 2742 | |
| 2743 | // OPEN: Settings > Wifi > Saved AP > Edit dialog |
| 2744 | DIALOG_WIFI_SAVED_AP_EDIT = 602; |
| 2745 | |
| 2746 | // OPEN: Settings > Wifi > Edit AP dialog |
| 2747 | DIALOG_WIFI_AP_EDIT = 603; |
| 2748 | |
| 2749 | // OPEN: Settings > Wifi > PBC Config dialog |
| 2750 | DIALOG_WIFI_PBC = 604; |
| 2751 | |
| 2752 | // OPEN: Settings > Wifi > Display pin dialog |
| 2753 | DIALOG_WIFI_PIN = 605; |
| 2754 | |
| 2755 | // OPEN: Settings > Wifi > Write config to NFC dialog |
| 2756 | DIALOG_WIFI_WRITE_NFC = 606; |
Fan Zhang | 04c2035 | 2016-09-23 12:11:15 -0700 | [diff] [blame] | 2757 | // OPEN: Settings > Date > Date picker dialog |
| 2758 | DIALOG_DATE_PICKER = 607; |
| 2759 | |
| 2760 | // OPEN: Settings > Date > Time picker dialog |
| 2761 | DIALOG_TIME_PICKER = 608; |
| 2762 | |
| 2763 | // OPEN: Settings > Wireless > Manage wireless plan dialog |
| 2764 | DIALOG_MANAGE_MOBILE_PLAN = 609; |
Fan Zhang | 5e9f69c | 2016-09-19 17:44:39 -0700 | [diff] [blame] | 2765 | |
Mahaver Chopra | a12b487 | 2016-09-28 16:19:36 +0100 | [diff] [blame] | 2766 | // ACTION: Logs network type of the device while provisioning |
Mahaver Chopra | 2b0efb0 | 2016-09-15 18:57:09 +0100 | [diff] [blame] | 2767 | PROVISIONING_NETWORK_TYPE = 610; |
| 2768 | |
Mahaver Chopra | a12b487 | 2016-09-28 16:19:36 +0100 | [diff] [blame] | 2769 | // ACTION: Logs action which triggered provisioning. |
| 2770 | PROVISIONING_ACTION = 611; |
| 2771 | |
Mahaver Chopra | ab28207 | 2016-10-06 19:19:23 +0100 | [diff] [blame] | 2772 | // ACTION: Logs extra passed by the dpc while provisioning. |
| 2773 | PROVISIONING_EXTRA = 612; |
| 2774 | |
Salvador Martinez | 64867c1 | 2016-10-14 15:25:09 -0700 | [diff] [blame] | 2775 | // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog |
| 2776 | BLUETOOTH_DIALOG_FRAGMENT = 613; |
| 2777 | |
Mahaver Chopra | 667ae0a | 2016-10-14 14:08:36 +0100 | [diff] [blame] | 2778 | // ACTION: Logs provisioning started by zero touch. |
| 2779 | PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614; |
| 2780 | |
| 2781 | // ACTION: Logs provisioning started by NFC bump. |
| 2782 | PROVISIONING_ENTRY_POINT_NFC = 615; |
| 2783 | |
| 2784 | // ACTION: Logs provisioning started using QR code. |
| 2785 | PROVISIONING_ENTRY_POINT_QR_CODE = 616; |
| 2786 | |
| 2787 | // ACTION: Logs provisioning started using adb. |
| 2788 | PROVISIONING_ENTRY_POINT_ADB = 617; |
| 2789 | |
| 2790 | // ACTION: Logs provisioning started by trusted source. |
| 2791 | PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618; |
| 2792 | |
Mahaver Chopra | cc7176f | 2016-10-26 17:16:19 +0100 | [diff] [blame] | 2793 | // ACTION: Logged when copy account task finishes. |
| 2794 | // TIME: Indicates time taken by copy account task to finish in MS. |
| 2795 | PROVISIONING_COPY_ACCOUNT_TASK_MS = 619; |
| 2796 | |
| 2797 | // ACTION: Logged when create profile task finishes. |
| 2798 | // TIME: Indicates time taken by create profile task to finish in MS. |
| 2799 | PROVISIONING_CREATE_PROFILE_TASK_MS = 620; |
| 2800 | |
| 2801 | // ACTION: Logged when start profile task finishes. |
| 2802 | // TIME: Indicates time taken by start profile task to finish in MS. |
| 2803 | PROVISIONING_START_PROFILE_TASK_MS = 621; |
| 2804 | |
| 2805 | // ACTION: Logged when download package task finishes. |
| 2806 | // TIME: Indicates time taken by download package task to finish in MS. |
| 2807 | PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622; |
| 2808 | |
| 2809 | // ACTION: Logged when install package task finishes. |
| 2810 | // TIME: Indicates time taken by install package task to finish in MS. |
| 2811 | PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623; |
| 2812 | |
| 2813 | // ACTION: User cancelled provisioning. |
| 2814 | PROVISIONING_CANCELLED = 624; |
| 2815 | |
| 2816 | // ACTION: Logged when provisioning throws an error. |
| 2817 | PROVISIONING_ERROR = 625; |
| 2818 | |
| 2819 | // ACTION: Logs the status of copying user account during provisioning. |
| 2820 | PROVISIONING_COPY_ACCOUNT_STATUS = 626; |
| 2821 | |
| 2822 | // ACTION: Logs the end to end time taken by all provisioning tasks. |
| 2823 | PROVISIONING_TOTAL_TASK_TIME_MS = 627; |
| 2824 | |
Bartosz Fabianowski | 48e6961 | 2016-11-10 04:08:31 +0100 | [diff] [blame] | 2825 | // OPEN: Settings > Privacy |
| 2826 | // CATEGORY: SETTINGS |
| 2827 | // OS: O |
| 2828 | ENTERPRISE_PRIVACY_SETTINGS = 628; |
| 2829 | |
Abodunrinwa Toki | 1b304e4 | 2016-11-03 23:27:58 +0000 | [diff] [blame] | 2830 | // ACTION: Longpress on a TextView. |
| 2831 | // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER. |
| 2832 | // CATEGORY: TEXT_CONTROLS |
| 2833 | // OS: O |
| 2834 | TEXT_LONGPRESS = 629; |
| 2835 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2836 | // ACTION: An app requested an unknown permission |
| 2837 | // PACKAGE: The package name of the app requesting the permission |
| 2838 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2839 | ACTION_PERMISSION_REQUEST_UNKNOWN = 630; |
| 2840 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2841 | // ACTION: An app was granted an unknown permission |
| 2842 | // PACKAGE: The package name of the app that was granted the permission |
| 2843 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2844 | ACTION_PERMISSION_GRANT_UNKNOWN = 631; |
| 2845 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2846 | // ACTION: An app requested an unknown permission and the request was denied |
| 2847 | // PACKAGE: The package name of the app requesting the permission |
| 2848 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2849 | ACTION_PERMISSION_DENIED_UNKNOWN = 632; |
| 2850 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2851 | // ACTION: An unknown permission was revoked for an app |
| 2852 | // PACKAGE: The package name of the app the permission was revoked for |
| 2853 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2854 | ACTION_PERMISSION_REVOKE_UNKNOWN = 633; |
| 2855 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2856 | // ACTION: An app requested the permission READ_CALENDAR |
| 2857 | // PACKAGE: The package name of the app requesting the permission |
| 2858 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2859 | ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634; |
| 2860 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2861 | // ACTION: An app was granted the permission READ_CALENDAR |
| 2862 | // PACKAGE: The package name of the app that was granted the permission |
| 2863 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2864 | ACTION_PERMISSION_GRANT_READ_CALENDAR = 635; |
| 2865 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2866 | // ACTION: An app requested the permission READ_CALENDAR and the request was denied |
| 2867 | // PACKAGE: The package name of the app requesting the permission |
| 2868 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2869 | ACTION_PERMISSION_DENIED_READ_CALENDAR = 636; |
| 2870 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2871 | // ACTION: The permission READ_CALENDAR was revoked for an app |
| 2872 | // PACKAGE: The package name of the app the permission was revoked for |
| 2873 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2874 | ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637; |
| 2875 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2876 | // ACTION: An app requested the permission WRITE_CALENDAR |
| 2877 | // PACKAGE: The package name of the app requesting the permission |
| 2878 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2879 | ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638; |
| 2880 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2881 | // ACTION: An app was granted the permission WRITE_CALENDAR |
| 2882 | // PACKAGE: The package name of the app that was granted the permission |
| 2883 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2884 | ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639; |
| 2885 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2886 | // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied |
| 2887 | // PACKAGE: The package name of the app requesting the permission |
| 2888 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2889 | ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640; |
| 2890 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2891 | // ACTION: The permission WRITE_CALENDAR was revoked for an app |
| 2892 | // PACKAGE: The package name of the app the permission was revoked for |
| 2893 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2894 | ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641; |
| 2895 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2896 | // ACTION: An app requested the permission CAMERA |
| 2897 | // PACKAGE: The package name of the app requesting the permission |
| 2898 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2899 | ACTION_PERMISSION_REQUEST_CAMERA = 642; |
| 2900 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2901 | // ACTION: An app was granted the permission CAMERA |
| 2902 | // PACKAGE: The package name of the app that was granted the permission |
| 2903 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2904 | ACTION_PERMISSION_GRANT_CAMERA = 643; |
| 2905 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2906 | // ACTION: An app requested the permission CAMERA and the request was denied |
| 2907 | // PACKAGE: The package name of the app requesting the permission |
| 2908 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2909 | ACTION_PERMISSION_DENIED_CAMERA = 644; |
| 2910 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2911 | // ACTION: The permission CAMERA was revoked for an app |
| 2912 | // PACKAGE: The package name of the app the permission was revoked for |
| 2913 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2914 | ACTION_PERMISSION_REVOKE_CAMERA = 645; |
| 2915 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2916 | // ACTION: An app requested the permission READ_CONTACTS |
| 2917 | // PACKAGE: The package name of the app requesting the permission |
| 2918 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2919 | ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646; |
| 2920 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2921 | // ACTION: An app was granted the permission READ_CONTACTS |
| 2922 | // PACKAGE: The package name of the app that was granted the permission |
| 2923 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2924 | ACTION_PERMISSION_GRANT_READ_CONTACTS = 647; |
| 2925 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2926 | // ACTION: An app requested the permission READ_CONTACTS and the request was denied |
| 2927 | // PACKAGE: The package name of the app requesting the permission |
| 2928 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2929 | ACTION_PERMISSION_DENIED_READ_CONTACTS = 648; |
| 2930 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2931 | // ACTION: The permission READ_CONTACTS was revoked for an app |
| 2932 | // PACKAGE: The package name of the app the permission was revoked for |
| 2933 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2934 | ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649; |
| 2935 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2936 | // ACTION: An app requested the permission WRITE_CONTACTS |
| 2937 | // PACKAGE: The package name of the app requesting the permission |
| 2938 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2939 | ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650; |
| 2940 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2941 | // ACTION: An app was granted the permission WRITE_CONTACTS |
| 2942 | // PACKAGE: The package name of the app that was granted the permission |
| 2943 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2944 | ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651; |
| 2945 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2946 | // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied |
| 2947 | // PACKAGE: The package name of the app requesting the permission |
| 2948 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2949 | ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652; |
| 2950 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2951 | // ACTION: The permission WRITE_CONTACTS was revoked for an app |
| 2952 | // PACKAGE: The package name of the app the permission was revoked for |
| 2953 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2954 | ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653; |
| 2955 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2956 | // ACTION: An app requested the permission GET_ACCOUNTS |
| 2957 | // PACKAGE: The package name of the app requesting the permission |
| 2958 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2959 | ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654; |
| 2960 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2961 | // ACTION: An app was granted the permission GET_ACCOUNTS |
| 2962 | // PACKAGE: The package name of the app that was granted the permission |
| 2963 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2964 | ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655; |
| 2965 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2966 | // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied |
| 2967 | // PACKAGE: The package name of the app requesting the permission |
| 2968 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2969 | ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656; |
| 2970 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2971 | // ACTION: The permission GET_ACCOUNTS was revoked for an app |
| 2972 | // PACKAGE: The package name of the app the permission was revoked for |
| 2973 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2974 | ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657; |
| 2975 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2976 | // ACTION: An app requested the permission ACCESS_FINE_LOCATION |
| 2977 | // PACKAGE: The package name of the app requesting the permission |
| 2978 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2979 | ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658; |
| 2980 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2981 | // ACTION: An app was granted the permission ACCESS_FINE_LOCATION |
| 2982 | // PACKAGE: The package name of the app that was granted the permission |
| 2983 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2984 | ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659; |
| 2985 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2986 | // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied |
| 2987 | // PACKAGE: The package name of the app requesting the permission |
| 2988 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2989 | ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660; |
| 2990 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2991 | // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app |
| 2992 | // PACKAGE: The package name of the app the permission was revoked for |
| 2993 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2994 | ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661; |
| 2995 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 2996 | // ACTION: An app requested the permission ACCESS_COARSE_LOCATION |
| 2997 | // PACKAGE: The package name of the app requesting the permission |
| 2998 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 2999 | ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662; |
| 3000 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3001 | // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION |
| 3002 | // PACKAGE: The package name of the app that was granted the permission |
| 3003 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3004 | ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663; |
| 3005 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3006 | // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied |
| 3007 | // PACKAGE: The package name of the app requesting the permission |
| 3008 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3009 | ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664; |
| 3010 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3011 | // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app |
| 3012 | // PACKAGE: The package name of the app the permission was revoked for |
| 3013 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3014 | ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665; |
| 3015 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3016 | // ACTION: An app requested the permission RECORD_AUDIO |
| 3017 | // PACKAGE: The package name of the app requesting the permission |
| 3018 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3019 | ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666; |
| 3020 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3021 | // ACTION: An app was granted the permission RECORD_AUDIO |
| 3022 | // PACKAGE: The package name of the app that was granted the permission |
| 3023 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3024 | ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667; |
| 3025 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3026 | // ACTION: An app requested the permission RECORD_AUDIO and the request was denied |
| 3027 | // PACKAGE: The package name of the app requesting the permission |
| 3028 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3029 | ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668; |
| 3030 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3031 | // ACTION: The permission RECORD_AUDIO was revoked for an app |
| 3032 | // PACKAGE: The package name of the app the permission was revoked for |
| 3033 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3034 | ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669; |
| 3035 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3036 | // ACTION: An app requested the permission READ_PHONE_STATE |
| 3037 | // PACKAGE: The package name of the app requesting the permission |
| 3038 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3039 | ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670; |
| 3040 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3041 | // ACTION: An app was granted the permission READ_PHONE_STATE |
| 3042 | // PACKAGE: The package name of the app that was granted the permission |
| 3043 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3044 | ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671; |
| 3045 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3046 | // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied |
| 3047 | // PACKAGE: The package name of the app requesting the permission |
| 3048 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3049 | ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672; |
| 3050 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3051 | // ACTION: The permission READ_PHONE_STATE was revoked for an app |
| 3052 | // PACKAGE: The package name of the app the permission was revoked for |
| 3053 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3054 | ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673; |
| 3055 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3056 | // ACTION: An app requested the permission CALL_PHONE |
| 3057 | // PACKAGE: The package name of the app requesting the permission |
| 3058 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3059 | ACTION_PERMISSION_REQUEST_CALL_PHONE = 674; |
| 3060 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3061 | // ACTION: An app was granted the permission CALL_PHONE |
| 3062 | // PACKAGE: The package name of the app that was granted the permission |
| 3063 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3064 | ACTION_PERMISSION_GRANT_CALL_PHONE = 675; |
| 3065 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3066 | // ACTION: An app requested the permission CALL_PHONE and the request was denied |
| 3067 | // PACKAGE: The package name of the app requesting the permission |
| 3068 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3069 | ACTION_PERMISSION_DENIED_CALL_PHONE = 676; |
| 3070 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3071 | // ACTION: The permission CALL_PHONE was revoked for an app |
| 3072 | // PACKAGE: The package name of the app the permission was revoked for |
| 3073 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3074 | ACTION_PERMISSION_REVOKE_CALL_PHONE = 677; |
| 3075 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3076 | // ACTION: An app requested the permission READ_CALL_LOG |
| 3077 | // PACKAGE: The package name of the app requesting the permission |
| 3078 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3079 | ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678; |
| 3080 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3081 | // ACTION: An app was granted the permission READ_CALL_LOG |
| 3082 | // PACKAGE: The package name of the app that was granted the permission |
| 3083 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3084 | ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679; |
| 3085 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3086 | // ACTION: An app requested the permission READ_CALL_LOG and the request was denied |
| 3087 | // PACKAGE: The package name of the app requesting the permission |
| 3088 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3089 | ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680; |
| 3090 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3091 | // ACTION: The permission READ_CALL_LOG was revoked for an app |
| 3092 | // PACKAGE: The package name of the app the permission was revoked for |
| 3093 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3094 | ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681; |
| 3095 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3096 | // ACTION: An app requested the permission WRITE_CALL_LOG |
| 3097 | // PACKAGE: The package name of the app requesting the permission |
| 3098 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3099 | ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682; |
| 3100 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3101 | // ACTION: An app was granted the permission WRITE_CALL_LOG |
| 3102 | // PACKAGE: The package name of the app that was granted the permission |
| 3103 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3104 | ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683; |
| 3105 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3106 | // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied |
| 3107 | // PACKAGE: The package name of the app requesting the permission |
| 3108 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3109 | ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684; |
| 3110 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3111 | // ACTION: The permission WRITE_CALL_LOG was revoked for an app |
| 3112 | // PACKAGE: The package name of the app the permission was revoked for |
| 3113 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3114 | ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685; |
| 3115 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3116 | // ACTION: An app requested the permission ADD_VOICEMAIL |
| 3117 | // PACKAGE: The package name of the app requesting the permission |
| 3118 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3119 | ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686; |
| 3120 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3121 | // ACTION: An app was granted the permission ADD_VOICEMAIL |
| 3122 | // PACKAGE: The package name of the app that was granted the permission |
| 3123 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3124 | ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687; |
| 3125 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3126 | // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied |
| 3127 | // PACKAGE: The package name of the app requesting the permission |
| 3128 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3129 | ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688; |
| 3130 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3131 | // ACTION: The permission ADD_VOICEMAIL was revoked for an app |
| 3132 | // PACKAGE: The package name of the app the permission was revoked for |
| 3133 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3134 | ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689; |
| 3135 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3136 | // ACTION: An app requested the permission USE_SIP |
| 3137 | // PACKAGE: The package name of the app requesting the permission |
| 3138 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3139 | ACTION_PERMISSION_REQUEST_USE_SIP = 690; |
| 3140 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3141 | // ACTION: An app was granted the permission USE_SIP |
| 3142 | // PACKAGE: The package name of the app that was granted the permission |
| 3143 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3144 | ACTION_PERMISSION_GRANT_USE_SIP = 691; |
| 3145 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3146 | // ACTION: An app requested the permission USE_SIP and the request was denied |
| 3147 | // PACKAGE: The package name of the app requesting the permission |
| 3148 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3149 | ACTION_PERMISSION_DENIED_USE_SIP = 692; |
| 3150 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3151 | // ACTION: The permission USE_SIP was revoked for an app |
| 3152 | // PACKAGE: The package name of the app the permission was revoked for |
| 3153 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3154 | ACTION_PERMISSION_REVOKE_USE_SIP = 693; |
| 3155 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3156 | // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS |
| 3157 | // PACKAGE: The package name of the app requesting the permission |
| 3158 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3159 | ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694; |
| 3160 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3161 | // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS |
| 3162 | // PACKAGE: The package name of the app that was granted the permission |
| 3163 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3164 | ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695; |
| 3165 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3166 | // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied |
| 3167 | // PACKAGE: The package name of the app requesting the permission |
| 3168 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3169 | ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696; |
| 3170 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3171 | // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app |
| 3172 | // PACKAGE: The package name of the app the permission was revoked for |
| 3173 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3174 | ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697; |
| 3175 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3176 | // ACTION: An app requested the permission READ_CELL_BROADCASTS |
| 3177 | // PACKAGE: The package name of the app requesting the permission |
| 3178 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3179 | ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698; |
| 3180 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3181 | // ACTION: An app was granted the permission READ_CELL_BROADCASTS |
| 3182 | // PACKAGE: The package name of the app that was granted the permission |
| 3183 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3184 | ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699; |
| 3185 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3186 | // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied |
| 3187 | // PACKAGE: The package name of the app requesting the permission |
| 3188 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3189 | ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700; |
| 3190 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3191 | // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app |
| 3192 | // PACKAGE: The package name of the app the permission was revoked for |
| 3193 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3194 | ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701; |
| 3195 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3196 | // ACTION: An app requested the permission BODY_SENSORS |
| 3197 | // PACKAGE: The package name of the app requesting the permission |
| 3198 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3199 | ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702; |
| 3200 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3201 | // ACTION: An app was granted the permission BODY_SENSORS |
| 3202 | // PACKAGE: The package name of the app that was granted the permission |
| 3203 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3204 | ACTION_PERMISSION_GRANT_BODY_SENSORS = 703; |
| 3205 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3206 | // ACTION: An app requested the permission BODY_SENSORS and the request was denied |
| 3207 | // PACKAGE: The package name of the app requesting the permission |
| 3208 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3209 | ACTION_PERMISSION_DENIED_BODY_SENSORS = 704; |
| 3210 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3211 | // ACTION: The permission BODY_SENSORS was revoked for an app |
| 3212 | // PACKAGE: The package name of the app the permission was revoked for |
| 3213 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3214 | ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705; |
| 3215 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3216 | // ACTION: An app requested the permission SEND_SMS |
| 3217 | // PACKAGE: The package name of the app requesting the permission |
| 3218 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3219 | ACTION_PERMISSION_REQUEST_SEND_SMS = 706; |
| 3220 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3221 | // ACTION: An app was granted the permission SEND_SMS |
| 3222 | // PACKAGE: The package name of the app that was granted the permission |
| 3223 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3224 | ACTION_PERMISSION_GRANT_SEND_SMS = 707; |
| 3225 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3226 | // ACTION: An app requested the permission SEND_SMS and the request was denied |
| 3227 | // PACKAGE: The package name of the app requesting the permission |
| 3228 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3229 | ACTION_PERMISSION_DENIED_SEND_SMS = 708; |
| 3230 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3231 | // ACTION: The permission SEND_SMS was revoked for an app |
| 3232 | // PACKAGE: The package name of the app the permission was revoked for |
| 3233 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3234 | ACTION_PERMISSION_REVOKE_SEND_SMS = 709; |
| 3235 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3236 | // ACTION: An app requested the permission RECEIVE_SMS |
| 3237 | // PACKAGE: The package name of the app requesting the permission |
| 3238 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3239 | ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710; |
| 3240 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3241 | // ACTION: An app was granted the permission RECEIVE_SMS |
| 3242 | // PACKAGE: The package name of the app that was granted the permission |
| 3243 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3244 | ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711; |
| 3245 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3246 | // ACTION: An app requested the permission RECEIVE_SMS and the request was denied |
| 3247 | // PACKAGE: The package name of the app requesting the permission |
| 3248 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3249 | ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712; |
| 3250 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3251 | // ACTION: The permission RECEIVE_SMS was revoked for an app |
| 3252 | // PACKAGE: The package name of the app the permission was revoked for |
| 3253 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3254 | ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713; |
| 3255 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3256 | // ACTION: An app requested the permission READ_SMS |
| 3257 | // PACKAGE: The package name of the app requesting the permission |
| 3258 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3259 | ACTION_PERMISSION_REQUEST_READ_SMS = 714; |
| 3260 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3261 | // ACTION: An app was granted the permission READ_SMS |
| 3262 | // PACKAGE: The package name of the app that was granted the permission |
| 3263 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3264 | ACTION_PERMISSION_GRANT_READ_SMS = 715; |
| 3265 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3266 | // ACTION: An app requested the permission READ_SMS and the request was denied |
| 3267 | // PACKAGE: The package name of the app requesting the permission |
| 3268 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3269 | ACTION_PERMISSION_DENIED_READ_SMS = 716; |
| 3270 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3271 | // ACTION: The permission READ_SMS was revoked for an app |
| 3272 | // PACKAGE: The package name of the app the permission was revoked for |
| 3273 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3274 | ACTION_PERMISSION_REVOKE_READ_SMS = 717; |
| 3275 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3276 | // ACTION: An app requested the permission RECEIVE_WAP_PUSH |
| 3277 | // PACKAGE: The package name of the app requesting the permission |
| 3278 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3279 | ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718; |
| 3280 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3281 | // ACTION: An app was granted the permission RECEIVE_WAP_PUSH |
| 3282 | // PACKAGE: The package name of the app that was granted the permission |
| 3283 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3284 | ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719; |
| 3285 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3286 | // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied |
| 3287 | // PACKAGE: The package name of the app requesting the permission |
| 3288 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3289 | ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720; |
| 3290 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3291 | // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app |
| 3292 | // PACKAGE: The package name of the app the permission was revoked for |
| 3293 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3294 | ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721; |
| 3295 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3296 | // ACTION: An app requested the permission RECEIVE_MMS |
| 3297 | // PACKAGE: The package name of the app requesting the permission |
| 3298 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3299 | ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722; |
| 3300 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3301 | // ACTION: An app was granted the permission RECEIVE_MMS |
| 3302 | // PACKAGE: The package name of the app that was granted the permission |
| 3303 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3304 | ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723; |
| 3305 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3306 | // ACTION: An app requested the permission RECEIVE_MMS and the request was denied |
| 3307 | // PACKAGE: The package name of the app requesting the permission |
| 3308 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3309 | ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724; |
| 3310 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3311 | // ACTION: The permission RECEIVE_MMS was revoked for an app |
| 3312 | // PACKAGE: The package name of the app the permission was revoked for |
| 3313 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3314 | ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725; |
| 3315 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3316 | // ACTION: An app requested the permission READ_EXTERNAL_STORAGE |
| 3317 | // PACKAGE: The package name of the app requesting the permission |
| 3318 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3319 | ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726; |
| 3320 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3321 | // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE |
| 3322 | // PACKAGE: The package name of the app that was granted the permission |
| 3323 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3324 | ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727; |
| 3325 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3326 | // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied |
| 3327 | // PACKAGE: The package name of the app requesting the permission |
| 3328 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3329 | ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728; |
| 3330 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3331 | // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app |
| 3332 | // PACKAGE: The package name of the app the permission was revoked for |
| 3333 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3334 | ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729; |
| 3335 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3336 | // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE |
| 3337 | // PACKAGE: The package name of the app requesting the permission |
| 3338 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3339 | ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730; |
| 3340 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3341 | // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE |
| 3342 | // PACKAGE: The package name of the app that was granted the permission |
| 3343 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3344 | ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731; |
| 3345 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3346 | // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied |
| 3347 | // PACKAGE: The package name of the app requesting the permission |
| 3348 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3349 | ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732; |
| 3350 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3351 | // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app |
| 3352 | // PACKAGE: The package name of the app the permission was revoked for |
| 3353 | // OBSOLETE as of Android P |
Philip P. Moltmann | 0d8f4b7 | 2016-11-09 11:28:05 -0800 | [diff] [blame] | 3354 | ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733; |
| 3355 | |
Mahaver | fa6566e | 2016-11-29 21:08:14 +0000 | [diff] [blame] | 3356 | // ACTION: Logged when a provisioning session has started |
| 3357 | PROVISIONING_SESSION_STARTED = 734; |
| 3358 | |
| 3359 | // ACTION: Logged when a provisioning session has completed |
| 3360 | PROVISIONING_SESSION_COMPLETED = 735; |
| 3361 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3362 | // ACTION: An app requested the permission READ_PHONE_NUMBERS |
| 3363 | // PACKAGE: The package name of the app requesting the permission |
| 3364 | // OBSOLETE as of Android P |
Chad Brubaker | 0c1651f | 2017-03-30 16:29:10 -0700 | [diff] [blame] | 3365 | ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736; |
Chad Brubaker | 811825a | 2016-12-06 12:31:15 -0800 | [diff] [blame] | 3366 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3367 | // ACTION: An app was granted the permission READ_PHONE_NUMBERS |
| 3368 | // PACKAGE: The package name of the app that was granted the permission |
| 3369 | // OBSOLETE as of Android P |
Chad Brubaker | 0c1651f | 2017-03-30 16:29:10 -0700 | [diff] [blame] | 3370 | ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737; |
Chad Brubaker | 811825a | 2016-12-06 12:31:15 -0800 | [diff] [blame] | 3371 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3372 | // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied |
| 3373 | // PACKAGE: The package name of the app requesting the permission |
| 3374 | // OBSOLETE as of Android P |
Chad Brubaker | 0c1651f | 2017-03-30 16:29:10 -0700 | [diff] [blame] | 3375 | ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738; |
Chad Brubaker | 811825a | 2016-12-06 12:31:15 -0800 | [diff] [blame] | 3376 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3377 | // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app |
| 3378 | // PACKAGE: The package name of the app the permission was revoked for |
| 3379 | // OBSOLETE as of Android P |
Chad Brubaker | 0c1651f | 2017-03-30 16:29:10 -0700 | [diff] [blame] | 3380 | ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739; |
Chad Brubaker | 811825a | 2016-12-06 12:31:15 -0800 | [diff] [blame] | 3381 | |
Santos Cordon | 3107d29 | 2016-09-20 15:50:35 -0700 | [diff] [blame] | 3382 | // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled) |
| 3383 | // SUBTYPE: slider value |
| 3384 | // CATEGORY: QUICK_SETTINGS |
| 3385 | // OS: 6.0 |
| 3386 | ACTION_BRIGHTNESS_FOR_VR = 498; |
| 3387 | |
Hugo Benichi | e1cbf15 | 2016-12-08 09:36:52 +0900 | [diff] [blame] | 3388 | // ACTION: A captive portal was detected during network validation |
| 3389 | // CATEGORY: NOTIFICATION |
| 3390 | // OS: N-MR2 |
| 3391 | NOTIFICATION_NETWORK_SIGN_IN = 740; |
| 3392 | |
| 3393 | // ACTION: An unvalidated network without Internet was selected by the user |
| 3394 | // CATEGORY: NOTIFICATION |
| 3395 | // OS: N-MR2 |
| 3396 | NOTIFICATION_NETWORK_NO_INTERNET = 741; |
| 3397 | |
| 3398 | // ACTION: A validated network failed revalidation and lost Internet access |
| 3399 | // CATEGORY: NOTIFICATION |
| 3400 | // OS: N-MR2 |
| 3401 | NOTIFICATION_NETWORK_LOST_INTERNET = 742; |
| 3402 | |
| 3403 | // ACTION: The system default network switched to a different network |
| 3404 | // CATEGORY: NOTIFICATION |
| 3405 | // OS: N-MR2 |
| 3406 | NOTIFICATION_NETWORK_SWITCH = 743; |
| 3407 | |
Fan Zhang | 074c4cb | 2016-12-21 12:10:33 -0800 | [diff] [blame] | 3408 | // OPEN: Settings > System |
| 3409 | SETTINGS_SYSTEM_CATEGORY = 744; |
| 3410 | |
| 3411 | // OPEN: Settings > Storage |
| 3412 | SETTINGS_STORAGE_CATEGORY = 745; |
| 3413 | |
| 3414 | // OPEN: Settings > Network & Internet |
| 3415 | SETTINGS_NETWORK_CATEGORY = 746; |
| 3416 | |
| 3417 | // OPEN: Settings > Connected Device |
| 3418 | SETTINGS_CONNECTED_DEVICE_CATEGORY = 747; |
| 3419 | |
| 3420 | // OPEN: Settings > App & Notification |
| 3421 | SETTINGS_APP_NOTIF_CATEGORY = 748; |
| 3422 | |
| 3423 | // OPEN: Settings > System > Input & Gesture |
| 3424 | SETTINGS_INPUT_CATEGORY = 749; |
| 3425 | |
| 3426 | // OPEN: Settings > System > Language & Region |
| 3427 | SETTINGS_LANGUAGE_CATEGORY = 750; |
| 3428 | |
| 3429 | // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture |
| 3430 | SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751; |
| 3431 | |
| 3432 | // OPEN: Settings > System > Input & Gesture > Double tap power button gesture |
| 3433 | SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752; |
| 3434 | |
| 3435 | // OPEN: Settings > System > Input & Gesture > Pick up gesture |
| 3436 | SETTINGS_GESTURE_PICKUP = 753; |
| 3437 | |
| 3438 | // OPEN: Settings > System > Input & Gesture > Double tap screen gesture |
| 3439 | SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754; |
| 3440 | |
| 3441 | // OPEN: Settings > System > Input & Gesture > Double twist gesture |
| 3442 | SETTINGS_GESTURE_DOUBLE_TWIST = 755; |
| 3443 | |
Salvador Martinez | 8eb4f62 | 2016-11-18 13:44:57 -0800 | [diff] [blame] | 3444 | // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog |
| 3445 | // CATEGORY: Settings |
| 3446 | DIALOG_SUPPORT_SYSTEM_INFORMATION = 756; |
| 3447 | |
Alison Cichowlas | 803054d | 2016-12-13 14:38:01 -0500 | [diff] [blame] | 3448 | // These values should never appear in log outputs - they are reserved for |
Chris Wren | 67b3eb9 | 2017-03-07 11:31:12 -0500 | [diff] [blame] | 3449 | // internal platform metrics use. |
Chris Wren | 26ca65d | 2016-11-29 10:43:28 -0500 | [diff] [blame] | 3450 | RESERVED_FOR_LOGBUILDER_CATEGORY = 757; |
| 3451 | RESERVED_FOR_LOGBUILDER_TYPE = 758; |
| 3452 | RESERVED_FOR_LOGBUILDER_SUBTYPE = 759; |
Alison Cichowlas | 803054d | 2016-12-13 14:38:01 -0500 | [diff] [blame] | 3453 | |
Salvador Martinez | c43ab06 | 2016-12-21 11:09:11 -0800 | [diff] [blame] | 3454 | // ACTION: "Do not show again" was enabled in the support disclaimer and the |
| 3455 | // user accepted |
| 3456 | ACTION_SKIP_DISCLAIMER_SELECTED = 760; |
Alison Cichowlas | 803054d | 2016-12-13 14:38:01 -0500 | [diff] [blame] | 3457 | |
Alison Cichowlas | 5cc5d8a | 2017-01-10 11:25:06 -0500 | [diff] [blame] | 3458 | // Enclosing category for group of APP_TRANSITION_FOO events, |
| 3459 | // logged when we execute an app transition. |
| 3460 | APP_TRANSITION = 761; |
| 3461 | |
Fan Zhang | 945deea | 2017-01-11 16:37:49 -0800 | [diff] [blame] | 3462 | // ACTION: User leaves Settings search UI without entering any query. |
| 3463 | ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762; |
| 3464 | |
| 3465 | // ACTION: Clicking on any search result in Settings. |
| 3466 | ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763; |
Alison Cichowlas | 5cc5d8a | 2017-01-10 11:25:06 -0500 | [diff] [blame] | 3467 | |
Fyodor Kupolov | 7423ffc | 2017-01-13 15:22:34 -0800 | [diff] [blame] | 3468 | // ACTION: Allow Battery optimization for an app |
| 3469 | APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764; |
| 3470 | |
| 3471 | // ACTION: Deny Battery optimization for an app |
| 3472 | APP_SPECIAL_PERMISSION_BATTERY_DENY = 765; |
| 3473 | |
| 3474 | // ACTION: Enable Device Admin app |
| 3475 | APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766; |
| 3476 | |
| 3477 | // ACTION: Disable Device Admin app |
| 3478 | APP_SPECIAL_PERMISSION_ADMIN_DENY = 767; |
| 3479 | |
| 3480 | // ACTION: Allow "Do Not Disturb access" for an app |
| 3481 | APP_SPECIAL_PERMISSION_DND_ALLOW = 768; |
| 3482 | |
| 3483 | // ACTION: Deny "Do Not Disturb access" for an app |
| 3484 | APP_SPECIAL_PERMISSION_DND_DENY = 769; |
| 3485 | |
| 3486 | // ACTION: Allow "Draw over other apps" for an app |
| 3487 | APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770; |
| 3488 | |
Christine Franks | 47175c3 | 2017-03-14 10:21:25 -0700 | [diff] [blame] | 3489 | // ACTION: Deny "Display over other apps" for an app |
Fyodor Kupolov | 7423ffc | 2017-01-13 15:22:34 -0800 | [diff] [blame] | 3490 | APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771; |
| 3491 | |
| 3492 | // ACTION: Allow "VR helper services" for an app |
| 3493 | APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772; |
| 3494 | |
| 3495 | // ACTION: Deny "VR helper services" for an app |
| 3496 | APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773; |
| 3497 | |
| 3498 | // ACTION: Allow "Modify system settings" for an app |
| 3499 | APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774; |
| 3500 | |
| 3501 | // ACTION: Deny "Modify system settings" for an app |
| 3502 | APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775; |
| 3503 | |
| 3504 | // ACTION: Allow "Notification access" for an app |
| 3505 | APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776; |
| 3506 | |
| 3507 | // ACTION: Deny "Notification access" for an app |
| 3508 | APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777; |
| 3509 | |
| 3510 | // ACTION: "Premium SMS access" for an app - "ask user" option |
| 3511 | APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778; |
| 3512 | |
| 3513 | // ACTION: "Premium SMS access" for an app - "never allow" option |
| 3514 | APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779; |
| 3515 | |
| 3516 | // ACTION: "Premium SMS access" for an app - "always allow" option |
| 3517 | APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780; |
| 3518 | |
| 3519 | // ACTION: Allow "Unrestricted data access" for an app |
| 3520 | APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781; |
| 3521 | |
| 3522 | // ACTION: Deny "Unrestricted data access" for an app |
| 3523 | APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782; |
| 3524 | |
| 3525 | // ACTION: Allow "Usage access" for an app |
| 3526 | APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783; |
| 3527 | |
| 3528 | // ACTION: Deny "Usage access" for an app |
| 3529 | APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784; |
| 3530 | |
Fan Zhang | ad5dacc | 2017-01-18 14:18:54 -0800 | [diff] [blame] | 3531 | // OPEN: Settings > Apps > Default Apps > Default browser |
| 3532 | DEFAULT_BROWSER_PICKER = 785; |
| 3533 | |
| 3534 | // OPEN: Settings > Apps > Default Apps > Default emergency app |
| 3535 | DEFAULT_EMERGENCY_APP_PICKER = 786; |
| 3536 | |
| 3537 | // OPEN: Settings > Apps > Default Apps > Default home |
| 3538 | DEFAULT_HOME_PICKER = 787; |
| 3539 | |
| 3540 | // OPEN: Settings > Apps > Default Apps > Default phone |
| 3541 | DEFAULT_PHONE_PICKER = 788; |
| 3542 | |
| 3543 | // OPEN: Settings > Apps > Default Apps > Default sms |
| 3544 | DEFAULT_SMS_PICKER = 789; |
| 3545 | |
| 3546 | // OPEN: Settings > Apps > Default Apps > Default notification assistant |
| 3547 | DEFAULT_NOTIFICATION_ASSISTANT = 790; |
| 3548 | |
| 3549 | // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection |
| 3550 | DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791; |
| 3551 | |
Jason Long | 1b51da6 | 2017-01-24 11:35:31 -0800 | [diff] [blame] | 3552 | // OPEN: Settings > Apps > Default Apps > Default autofill app |
| 3553 | DEFAULT_AUTOFILL_PICKER = 792; |
Jason Long | c100962 | 2017-01-18 03:15:21 -0800 | [diff] [blame] | 3554 | |
Chris Wren | 26ca65d | 2016-11-29 10:43:28 -0500 | [diff] [blame] | 3555 | // These values should never appear in log outputs - they are reserved for |
Chris Wren | 67b3eb9 | 2017-03-07 11:31:12 -0500 | [diff] [blame] | 3556 | // internal platform metrics use. |
Chris Wren | 26ca65d | 2016-11-29 10:43:28 -0500 | [diff] [blame] | 3557 | NOTIFICATION_SINCE_CREATE_MILLIS = 793; |
| 3558 | NOTIFICATION_SINCE_VISIBLE_MILLIS = 794; |
| 3559 | NOTIFICATION_SINCE_UPDATE_MILLIS = 795; |
| 3560 | NOTIFICATION_ID = 796; |
| 3561 | NOTIFICATION_TAG = 797; |
| 3562 | NOTIFICATION_SHADE_INDEX = 798; |
| 3563 | RESERVED_FOR_LOGBUILDER_NAME = 799; |
Philip P. Moltmann | 2e30126 | 2016-06-16 12:39:54 -0700 | [diff] [blame] | 3564 | |
Anas Karbila | f7648f4 | 2016-12-11 00:55:02 +0100 | [diff] [blame] | 3565 | // OPEN: QS NFC tile shown |
| 3566 | // ACTION: QS NFC tile tapped |
| 3567 | // CATEGORY: QUICK_SETTINGS |
Jason Monk | 8cff199 | 2017-01-18 13:45:59 -0500 | [diff] [blame] | 3568 | QS_NFC = 800; |
Anas Karbila | f7648f4 | 2016-12-11 00:55:02 +0100 | [diff] [blame] | 3569 | |
Chris Wren | 26ca65d | 2016-11-29 10:43:28 -0500 | [diff] [blame] | 3570 | // These values should never appear in log outputs - they are reserved for |
Chris Wren | 67b3eb9 | 2017-03-07 11:31:12 -0500 | [diff] [blame] | 3571 | // internal platform metrics use. |
Chris Wren | 26ca65d | 2016-11-29 10:43:28 -0500 | [diff] [blame] | 3572 | RESERVED_FOR_LOGBUILDER_BUCKET = 801; |
| 3573 | RESERVED_FOR_LOGBUILDER_VALUE = 802; |
| 3574 | RESERVED_FOR_LOGBUILDER_COUNTER = 803; |
| 3575 | RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804; |
| 3576 | RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805; |
| 3577 | RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806; |
| 3578 | |
Fyodor Kupolov | dc7505d | 2017-01-18 18:28:21 -0800 | [diff] [blame] | 3579 | // ACTION: "Force stop" action on an app |
| 3580 | ACTION_APP_FORCE_STOP = 807; |
| 3581 | |
Suprabh Shukla | 2f34b1a | 2016-12-16 14:47:25 -0800 | [diff] [blame] | 3582 | // OPEN: Settings > Apps > Gear > Special Access > Install other apps |
| 3583 | // CATEGORY: SETTINGS |
| 3584 | // OS: 8.0 |
| 3585 | MANAGE_EXTERNAL_SOURCES = 808; |
| 3586 | |
Mahaver | 6cd4716 | 2017-01-23 09:59:33 +0000 | [diff] [blame] | 3587 | // ACTION: Logged when terms activity finishes. |
| 3588 | // TIME: Indicates time taken by terms activity to finish in MS. |
| 3589 | PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809; |
| 3590 | |
| 3591 | // Indicates number of terms displayed on the terms screen. |
| 3592 | PROVISIONING_TERMS_COUNT = 810; |
| 3593 | |
| 3594 | // Indicates number of terms read on the terms screen. |
| 3595 | PROVISIONING_TERMS_READ = 811; |
| 3596 | |
Winson Chung | 59fda9e | 2017-01-20 16:14:51 -0800 | [diff] [blame] | 3597 | // Logs that the user has edited the picture-in-picture settings. |
| 3598 | // CATEGORY: SETTINGS |
| 3599 | SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812; |
| 3600 | |
Winson Chung | f4ac063 | 2017-03-17 12:34:12 -0700 | [diff] [blame] | 3601 | // ACTION: Allow "Enable picture-in-picture" for an app |
| 3602 | APP_PICTURE_IN_PICTURE_ALLOW = 813; |
Winson Chung | 59fda9e | 2017-01-20 16:14:51 -0800 | [diff] [blame] | 3603 | |
Winson Chung | f4ac063 | 2017-03-17 12:34:12 -0700 | [diff] [blame] | 3604 | // ACTION: Deny "Enable picture-in-picture" for an app |
| 3605 | APP_PICTURE_IN_PICTURE_DENY = 814; |
Winson Chung | 59fda9e | 2017-01-20 16:14:51 -0800 | [diff] [blame] | 3606 | |
Niels Egberts | b8de3d6 | 2017-01-24 15:30:28 +0000 | [diff] [blame] | 3607 | // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch |
| 3608 | // CATEGORY: SETTINGS |
| 3609 | // OS: 8.0 |
| 3610 | TTS_SLIDERS = 815; |
| 3611 | |
Jason Monk | 524fb40 | 2017-01-25 10:33:31 -0500 | [diff] [blame] | 3612 | // ACTION: Settings -> Display -> Theme |
| 3613 | ACTION_THEME = 816; |
| 3614 | |
chchao | b8e253a | 2017-01-25 12:12:09 -0800 | [diff] [blame] | 3615 | // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak |
| 3616 | // ACTION: Select to Speak configuration is chosen |
| 3617 | // SUBTYPE: 0 is off, 1 is on |
| 3618 | // CATEGORY: SETTINGS |
| 3619 | // OS: N |
| 3620 | SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817; |
| 3621 | |
Anton Philippov | 95a553e | 2017-01-27 00:08:24 +0000 | [diff] [blame] | 3622 | // OPEN: Settings > System > Backup |
| 3623 | // CATEGORY: SETTINGS |
| 3624 | // OS: O |
| 3625 | BACKUP_SETTINGS = 818; |
| 3626 | |
Winson Chung | 14fbe14 | 2016-12-19 16:18:24 -0800 | [diff] [blame] | 3627 | // ACTION: Picture-in-picture was explicitly entered for an activity |
Chris Wren | 27a52fa | 2017-02-01 14:21:43 -0500 | [diff] [blame] | 3628 | // VALUE: true if it was entered while hiding as a result of moving to |
| 3629 | // another task, false otherwise |
Winson Chung | 14fbe14 | 2016-12-19 16:18:24 -0800 | [diff] [blame] | 3630 | ACTION_PICTURE_IN_PICTURE_ENTERED = 819; |
| 3631 | |
| 3632 | // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen |
| 3633 | // PACKAGE: The package name of the activity that was expanded back to fullscreen |
| 3634 | ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820; |
| 3635 | |
| 3636 | // ACTION: The activity currently in picture-in-picture was minimized |
| 3637 | // VALUE: True if the PiP was minimized, false otherwise |
| 3638 | ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821; |
| 3639 | |
| 3640 | // ACTION: Picture-in-picture was dismissed via the dismiss button |
| 3641 | // VALUE: 0 if dismissed by tap, 1 if dismissed by drag |
| 3642 | ACTION_PICTURE_IN_PICTURE_DISMISSED = 822; |
| 3643 | |
| 3644 | // ACTION: The visibility of the picture-in-picture meny |
| 3645 | // VALUE: Whether or not the menu is visible |
| 3646 | ACTION_PICTURE_IN_PICTURE_MENU = 823; |
| 3647 | |
| 3648 | // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events, |
| 3649 | // logged when the aspect ratio changes |
| 3650 | ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824; |
| 3651 | |
| 3652 | // The current aspect ratio of the PiP, logged when it changes. |
| 3653 | PICTURE_IN_PICTURE_ASPECT_RATIO = 825; |
| 3654 | |
Chris Wren | 27a52fa | 2017-02-01 14:21:43 -0500 | [diff] [blame] | 3655 | // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable |
| 3656 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 3657 | // OS: O |
| 3658 | FIELD_GESTURE_LENGTH = 826; |
| 3659 | |
| 3660 | // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable |
| 3661 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 3662 | // OS: O |
| 3663 | FIELD_GESTURE_VELOCITY = 827; |
| 3664 | |
Christine Franks | 27fde39 | 2017-02-07 10:21:55 -0800 | [diff] [blame] | 3665 | // OPEN: Carrier demo mode password dialog |
| 3666 | CARRIER_DEMO_MODE_PASSWORD = 828; |
| 3667 | |
Fan Zhang | 70967f3 | 2017-02-13 16:02:24 -0800 | [diff] [blame] | 3668 | // ACTION: Create a Settings shortcut item. |
| 3669 | ACTION_SETTINGS_CREATE_SHORTCUT = 829; |
| 3670 | |
| 3671 | // ACTION: A tile in Settings information architecture is clicked |
| 3672 | ACTION_SETTINGS_TILE_CLICK = 830; |
| 3673 | |
Julia Reynolds | 520df6e | 2017-02-13 09:05:10 -0500 | [diff] [blame] | 3674 | // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification |
| 3675 | // updated |
| 3676 | // CATEGORY: NOTIFICATION |
| 3677 | // OS: O |
| 3678 | NOTIFICATION_SNOOZED = 831; |
| 3679 | |
| 3680 | // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time. |
| 3681 | // OS: O |
| 3682 | NOTIFICATION_SNOOZED_CRITERIA = 832; |
| 3683 | |
Fan Zhang | 6589943 | 2017-02-14 13:36:53 -0800 | [diff] [blame] | 3684 | // FIELD - The context (source) from which an action is performed |
Jason Monk | f8c2f7b | 2017-09-06 09:22:29 -0400 | [diff] [blame] | 3685 | // For QS, this is a boolean of whether the panel is expanded |
Fan Zhang | 6589943 | 2017-02-14 13:36:53 -0800 | [diff] [blame] | 3686 | FIELD_CONTEXT = 833; |
| 3687 | |
Fan Zhang | d95dcb4 | 2017-02-14 13:48:09 -0800 | [diff] [blame] | 3688 | // ACTION: Settings advanced button is expanded |
| 3689 | ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834; |
| 3690 | |
Sundeep Ghuman | 53a7e8c | 2017-02-13 13:13:07 -0800 | [diff] [blame] | 3691 | // ACTION: Logs the number of times the saved network evaluator was used to |
| 3692 | // recommend a wifi network |
| 3693 | WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835; |
| 3694 | |
| 3695 | // ACTION: Logs the number of times the recommended network evaluator was |
| 3696 | // used to recommend a wifi network |
| 3697 | WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836; |
| 3698 | |
| 3699 | // ACTION: Logs the number of times a recommended network was resulted in a |
| 3700 | // successful connection |
| 3701 | // VALUE: true if the connection was successful, false if the connection failed |
| 3702 | WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837; |
| 3703 | |
Daniel Nishi | c581bfc | 2017-02-08 10:18:19 -0800 | [diff] [blame] | 3704 | // OPEN: Settings > Storage > Games |
| 3705 | // CATEGORY: SETTINGS |
| 3706 | // OS: O |
| 3707 | APPLICATIONS_STORAGE_GAMES = 838; |
| 3708 | |
| 3709 | // OPEN: Settings > Storage > Audio and Music |
| 3710 | // CATEGORY: SETTINGS |
| 3711 | // OS: O |
| 3712 | APPLICATIONS_STORAGE_MUSIC = 839; |
| 3713 | |
| 3714 | // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper |
| 3715 | // CATEGORY: SETTINGS |
| 3716 | // OS: O |
| 3717 | STORAGE_FREE_UP_SPACE_NOW = 840; |
| 3718 | |
| 3719 | // ACTION: Settings > Storage > Files to open the File Manager |
| 3720 | // CATEGORY: SETTINGS |
| 3721 | // OS: O |
| 3722 | STORAGE_FILES = 841; |
| 3723 | |
Fan Zhang | b1d4922 | 2017-02-15 17:12:58 -0800 | [diff] [blame] | 3724 | // FIELD - Rank of the clicked Settings search result |
Fan Zhang | 449502e | 2017-06-26 12:07:59 -0700 | [diff] [blame] | 3725 | FIELD_SETTINGS_SEARCH_RESULT_RANK = 842; |
Fan Zhang | b1d4922 | 2017-02-15 17:12:58 -0800 | [diff] [blame] | 3726 | |
Fan Zhang | 7f2cace | 2017-02-17 12:05:48 -0800 | [diff] [blame] | 3727 | // OPEN: Settings > Apps > Default Apps > Assist > Default assist |
| 3728 | DEFAULT_ASSIST_PICKER = 843; |
| 3729 | |
| 3730 | // OPEN: Settings > Apps > Default Apps > Assist > Default voice input |
| 3731 | DEFAULT_VOICE_INPUT_PICKER = 844; |
| 3732 | |
Daniel Nishi | 4058a84 | 2017-02-21 17:11:35 -0800 | [diff] [blame] | 3733 | // OPEN: Settings > Storage > [Profile] |
| 3734 | SETTINGS_STORAGE_PROFILE = 845; |
| 3735 | |
Doris Ling | edb84c3 | 2017-02-23 10:56:01 -0800 | [diff] [blame] | 3736 | // OPEN: Settings > Security & screen lock -> Encryption & crendentials |
| 3737 | // CATEGORY: SETTINGS |
| 3738 | // OS: O |
| 3739 | ENCRYPTION_AND_CREDENTIAL = 846; |
| 3740 | |
Fan Zhang | b66e542 | 2017-02-24 14:37:45 -0800 | [diff] [blame] | 3741 | // ACTION: Settings > About device > Build number |
| 3742 | ACTION_SETTINGS_BUILD_NUMBER_PREF = 847; |
| 3743 | |
| 3744 | // FIELD: Whether developer mode has already been enabled when clicking build number preference |
| 3745 | FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848; |
| 3746 | |
Sundeep Ghuman | 104aa31 | 2017-02-27 15:57:58 -0800 | [diff] [blame] | 3747 | // OPEN: Settings > Wi-Fi > Network Details (click on Access Point) |
| 3748 | // CATEGORY: SETTINGS |
| 3749 | // OS: O |
| 3750 | WIFI_NETWORK_DETAILS = 849; |
| 3751 | |
jackqdyulei | a2a1434 | 2017-02-28 16:20:48 -0800 | [diff] [blame] | 3752 | // ACTION: Settings > Battery > Menu > Usage Alerts |
| 3753 | ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850; |
| 3754 | |
| 3755 | // ACTION: Settings > Battery > Menu > Optimization |
| 3756 | ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851; |
| 3757 | |
| 3758 | // ACTION: Settings > Battery > Menu > Apps Toggle |
| 3759 | ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852; |
| 3760 | |
Fan Zhang | b5ce2d1 | 2017-03-06 15:33:10 -0800 | [diff] [blame] | 3761 | // ACTION: Settings > Any preference is changed |
| 3762 | ACTION_SETTINGS_PREFERENCE_CHANGE = 853; |
| 3763 | |
| 3764 | // FIELD: The name of preference when it is changed in Settings |
| 3765 | FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854; |
| 3766 | |
| 3767 | // FIELD: The new value of preference when it is changed in Settings |
| 3768 | FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855; |
| 3769 | |
Julia Reynolds | d373d78 | 2017-03-03 13:32:57 -0500 | [diff] [blame] | 3770 | // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification |
| 3771 | // channel updated |
| 3772 | // PACKAGE: the package the channel belongs too |
| 3773 | // CATEGORY: NOTIFICATION |
| 3774 | // OS: O |
| 3775 | ACTION_NOTIFICATION_CHANNEL = 856; |
| 3776 | |
| 3777 | // Tagged data for notification channel. String. |
| 3778 | FIELD_NOTIFICATION_CHANNEL_ID = 857; |
| 3779 | |
| 3780 | // Tagged data for notification channel. int. |
| 3781 | FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858; |
| 3782 | |
| 3783 | // OPEN: Notification channel group created. |
| 3784 | // PACKAGE: the package the group belongs to |
| 3785 | // CATEGORY: NOTIFICATION |
| 3786 | // OS: O |
| 3787 | ACTION_NOTIFICATION_CHANNEL_GROUP = 859; |
| 3788 | |
| 3789 | // Tagged data for notification channel group. String. |
| 3790 | FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860; |
| 3791 | |
Stephen Chen | be9a9a6 | 2017-03-06 12:20:48 -0800 | [diff] [blame] | 3792 | // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer |
| 3793 | // CATEGORY: SETTINGS |
| 3794 | // OS: O |
| 3795 | SETTINGS_NETWORK_SCORER = 861; |
| 3796 | |
Fan Zhang | 9986131 | 2017-03-07 14:32:38 -0800 | [diff] [blame] | 3797 | // OPEN: Settings > About device > Model > Hardware info dialog |
| 3798 | DIALOG_SETTINGS_HARDWARE_INFO = 862; |
| 3799 | |
mariagpuyol | 0f5512e | 2017-03-01 12:09:56 -0800 | [diff] [blame] | 3800 | // ACTION: Checks whether a contact's phone still exists |
| 3801 | // Value 0: It doesn't exist anymore |
| 3802 | // Value 1: It still exists |
| 3803 | // Value 2: A SecurityException was thrown |
| 3804 | // CATEGORY: SETTINGS |
| 3805 | // OS: N |
| 3806 | ACTION_PHONE_EXISTS = 863; |
| 3807 | |
| 3808 | // ACTION: Retrieves a contact from CP2 |
| 3809 | // Value 0: Contact retrieved without issues |
| 3810 | // Value 1: An IllegalArgumentException was thrown |
| 3811 | // CATEGORY: SETTINGS |
| 3812 | // OS: N |
| 3813 | ACTION_GET_CONTACT = 864; |
| 3814 | |
Chris Wren | 4d6b54d | 2017-04-27 16:56:54 -0400 | [diff] [blame] | 3815 | // This value should never appear in log outputs - it is reserved for |
Chris Wren | 67b3eb9 | 2017-03-07 11:31:12 -0500 | [diff] [blame] | 3816 | // internal platform metrics use. |
| 3817 | RESERVED_FOR_LOGBUILDER_PID = 865; |
| 3818 | |
Doris Ling | 9ac3ddd | 2017-03-09 14:53:02 -0800 | [diff] [blame] | 3819 | // ACTION: Settings > Connected devices > Bluetooth -> Available devices |
| 3820 | ACTION_SETTINGS_BLUETOOTH_PAIR = 866; |
| 3821 | |
| 3822 | // ACTION: Settings > Connected devices > Bluetooth -> Paired devices |
| 3823 | ACTION_SETTINGS_BLUETOOTH_CONNECT = 867; |
| 3824 | |
| 3825 | // ACTION: Settings > Connected devices > Bluetooth -> Connected device |
| 3826 | ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868; |
| 3827 | |
| 3828 | // ACTION: Settings > Connected devices > Bluetooth -> Error dialog |
| 3829 | ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869; |
| 3830 | |
| 3831 | // ACTION: Settings > Connected devices > Bluetooth master switch Toggle |
| 3832 | ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870; |
| 3833 | |
Jorim Jaggi | 3878ca3 | 2017-02-02 17:13:05 -0800 | [diff] [blame] | 3834 | // The name of the activity being launched in an app transition event. |
Jason Monk | 8c09ac7 | 2017-03-16 11:53:40 -0400 | [diff] [blame] | 3835 | FIELD_CLASS_NAME = 871; |
Jorim Jaggi | 3878ca3 | 2017-02-02 17:13:05 -0800 | [diff] [blame] | 3836 | |
Fan Zhang | 082d21c | 2017-03-13 15:25:54 -0700 | [diff] [blame] | 3837 | // ACTION: Settings > App detail > Uninstall |
| 3838 | ACTION_SETTINGS_UNINSTALL_APP = 872; |
| 3839 | |
| 3840 | // ACTION: Settings > App detail > Uninstall Device admin app |
| 3841 | ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873; |
| 3842 | |
| 3843 | // ACTION: Settings > App detail > Disable app |
| 3844 | ACTION_SETTINGS_DISABLE_APP = 874; |
| 3845 | |
| 3846 | // ACTION: Settings > App detail > Enable app |
| 3847 | ACTION_SETTINGS_ENABLE_APP = 875; |
| 3848 | |
| 3849 | // ACTION: Settings > App detail > Clear data |
| 3850 | ACTION_SETTINGS_CLEAR_APP_DATA = 876; |
| 3851 | |
| 3852 | // ACTION: Settings > App detail > Clear cache |
| 3853 | ACTION_SETTINGS_CLEAR_APP_CACHE = 877; |
| 3854 | |
| 3855 | // ACTION: Clicking on any search result in Settings. |
| 3856 | ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878; |
| 3857 | |
| 3858 | // FIELD: Settings inline search result name |
| 3859 | FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879; |
| 3860 | |
| 3861 | // FIELD: Settings inline search result value |
| 3862 | FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880; |
| 3863 | |
Fan Zhang | 5379793 | 2017-03-13 17:46:24 -0700 | [diff] [blame] | 3864 | // ACTION: Settings > Search > Click saved queries |
| 3865 | ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881; |
| 3866 | |
Doris Ling | bf8d9de | 2017-03-15 11:52:50 -0700 | [diff] [blame] | 3867 | // OPEN: Settings > Security & screen lock -> Lock screen preferences |
| 3868 | // CATEGORY: SETTINGS |
| 3869 | SETTINGS_LOCK_SCREEN_PREFERENCES = 882; |
| 3870 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3871 | // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS |
| 3872 | // PACKAGE: The package name of the app requesting the permission |
| 3873 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3874 | ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883; |
| 3875 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3876 | // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS |
| 3877 | // PACKAGE: The package name of the app that was granted the permission |
| 3878 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3879 | ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884; |
| 3880 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3881 | // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied |
| 3882 | // PACKAGE: The package name of the app requesting the permission |
| 3883 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3884 | ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885; |
| 3885 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3886 | // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app |
| 3887 | // PACKAGE: The package name of the app the permission was revoked for |
| 3888 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3889 | ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886; |
| 3890 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3891 | // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW |
| 3892 | // PACKAGE: The package name of the app requesting the permission |
| 3893 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3894 | ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887; |
| 3895 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3896 | // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW |
| 3897 | // PACKAGE: The package name of the app that was granted the permission |
| 3898 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3899 | ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888; |
| 3900 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3901 | // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied |
| 3902 | // PACKAGE: The package name of the app requesting the permission |
| 3903 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3904 | ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889; |
| 3905 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3906 | // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app |
| 3907 | // PACKAGE: The package name of the app the permission was revoked for |
| 3908 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3909 | ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890; |
| 3910 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3911 | // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS |
| 3912 | // PACKAGE: The package name of the app requesting the permission |
| 3913 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3914 | ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891; |
| 3915 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3916 | // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS |
| 3917 | // PACKAGE: The package name of the app that was granted the permission |
| 3918 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3919 | ACTION_APPOP_GRANT_WRITE_SETTINGS = 892; |
| 3920 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3921 | // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied |
| 3922 | // PACKAGE: The package name of the app requesting the permission |
| 3923 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3924 | ACTION_APPOP_DENIED_WRITE_SETTINGS = 893; |
| 3925 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3926 | // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app |
| 3927 | // PACKAGE: The package name of the app the permission was revoked for |
| 3928 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3929 | ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894; |
| 3930 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3931 | // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES |
| 3932 | // PACKAGE: The package name of the app requesting the permission |
| 3933 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3934 | ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895; |
| 3935 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3936 | // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES |
| 3937 | // PACKAGE: The package name of the app that was granted the permission |
| 3938 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3939 | ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896; |
| 3940 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3941 | // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied |
| 3942 | // PACKAGE: The package name of the app requesting the permission |
| 3943 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3944 | ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897; |
| 3945 | |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 3946 | // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app |
| 3947 | // PACKAGE: The package name of the app the permission was revoked for |
| 3948 | // OBSOLETE as of Android P |
Philip P. Moltmann | e56c08e | 2017-03-15 12:46:04 -0700 | [diff] [blame] | 3949 | ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898; |
| 3950 | |
Todd Kennedy | 7e5407e | 2017-03-16 09:51:11 -0700 | [diff] [blame] | 3951 | // ACTION: Phase 1 of instant application resolution occurred |
| 3952 | // OS: O |
| 3953 | ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899; |
| 3954 | |
| 3955 | // ACTION: Phase 2 of instant application resolution occurred |
| 3956 | // OS: O |
| 3957 | ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900; |
| 3958 | |
| 3959 | // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds |
| 3960 | // OS: O |
| 3961 | FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901; |
| 3962 | |
| 3963 | // FIELD: The status of an ephemeral resolution phase |
| 3964 | // Value 0: success |
| 3965 | // Value 1: no full hash match |
| 3966 | // OS: O |
| 3967 | FIELD_INSTANT_APP_RESOLUTION_STATUS = 902; |
| 3968 | |
| 3969 | // FIELD - A token to identify all events that are part of the same instant application launch |
| 3970 | // OS: O |
| 3971 | FIELD_INSTANT_APP_LAUNCH_TOKEN = 903; |
| 3972 | |
| 3973 | // FIELD - The name of the package responsible for launching the activity |
| 3974 | // OS: O |
| 3975 | APP_TRANSITION_CALLING_PACKAGE_NAME = 904; |
| 3976 | |
| 3977 | // FIELD - Whether or not the launched activity is part of an instant application |
| 3978 | // OS: O |
| 3979 | APP_TRANSITION_IS_EPHEMERAL = 905; |
| 3980 | |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 3981 | // An autofill session was started |
| 3982 | // Package: Package of app that is autofilled |
Felipe Leme | 5e04720 | 2017-12-05 16:30:06 -0800 | [diff] [blame] | 3983 | // NOTE: starting on OS MR1, it also added the following field: |
| 3984 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 3985 | // NOTE: starting on OS P, it also added the following field: |
| 3986 | // Tag FIELD_FLAGS - Flags used to start the session |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 3987 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 3988 | AUTOFILL_SESSION_STARTED = 906; |
| 3989 | |
| 3990 | // An autofill request was processed by a service |
| 3991 | // Type TYPE_SUCCESS: The request succeeded |
| 3992 | // Type TYPE_FAILURE: The request failed |
| 3993 | // Package: Package of app that is autofilled |
| 3994 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 2568de0 | 2018-03-21 08:52:14 -0700 | [diff] [blame] | 3995 | // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if |
| 3996 | // the service returned a null response. |
Felipe Leme | 5e04720 | 2017-12-05 16:30:06 -0800 | [diff] [blame] | 3997 | // NOTE: starting on OS P, it also added: |
| 3998 | // Type TYPE_CLOSE: Service returned a null response. |
| 3999 | // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification, |
| 4000 | // number of entries field ids in the request. |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4001 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4002 | AUTOFILL_REQUEST = 907; |
| 4003 | |
| 4004 | // Tag of a field for a package of an autofill service |
| 4005 | FIELD_AUTOFILL_SERVICE = 908; |
| 4006 | |
| 4007 | // Tag of a field for the number of datasets |
| 4008 | FIELD_AUTOFILL_NUM_DATASETS = 909; |
| 4009 | |
| 4010 | // An autofill dataset selection UI was shown |
| 4011 | // Type TYPE_DISMISS: UI was explicityly canceled by the user |
| 4012 | // Type TYPE_CLOSE: UI was destroyed without influence of the user |
| 4013 | // Type TYPE_ACTION: dataset was selected |
| 4014 | // Type TYPE_DETAIL: authentication was selected |
| 4015 | // Package: Package of app that was autofilled |
| 4016 | // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text |
| 4017 | // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown |
Felipe Leme | 6ef61b8 | 2018-02-15 16:26:02 -0800 | [diff] [blame] | 4018 | // NOTE: starting on OS P, it also added the following field: |
| 4019 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4020 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4021 | AUTOFILL_FILL_UI = 910; |
| 4022 | |
| 4023 | // Tag of a field for the length of the filter text |
| 4024 | FIELD_AUTOFILL_FILTERTEXT_LEN = 911; |
| 4025 | |
Felipe Leme | b4cd622 | 2017-09-26 09:11:32 -0700 | [diff] [blame] | 4026 | // An autofill authentication succeeded |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4027 | // Package: Package of app that was autofilled |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4028 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4029 | // NOTE: starting on OS P, it also added the following field: |
| 4030 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4031 | AUTOFILL_AUTHENTICATED = 912; |
| 4032 | |
| 4033 | // An activity was autofilled and all values could be applied |
| 4034 | // Package: Package of app that is autofilled |
| 4035 | // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled |
| 4036 | // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4037 | // NOTE: starting on OS P, it also added the following field: |
| 4038 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4039 | AUTOFILL_DATASET_APPLIED = 913; |
| 4040 | |
| 4041 | // Tag of a field for the number values to be filled in |
| 4042 | FIELD_AUTOFILL_NUM_VALUES = 914; |
| 4043 | |
| 4044 | // Tag of a field for the number of views that were filled |
| 4045 | FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915; |
| 4046 | |
| 4047 | // An autofill save UI was shown |
| 4048 | // Type TYPE_DISMISS: UI was explicityly canceled by the user |
| 4049 | // Type TYPE_CLOSE: UI was destroyed without influence of the user |
| 4050 | // Type TYPE_ACTION: data was saved |
| 4051 | // Package: Package of app that was autofilled |
Felipe Leme | 6ef61b8 | 2018-02-15 16:26:02 -0800 | [diff] [blame] | 4052 | // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved |
| 4053 | // NOTE: starting on OS P, it also added the following field: |
| 4054 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4055 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4056 | AUTOFILL_SAVE_UI = 916; |
| 4057 | |
| 4058 | // Tag of a field for the number of saveable ids |
| 4059 | FIELD_AUTOFILL_NUM_IDS = 917; |
| 4060 | |
| 4061 | // ACTION: An autofill service was reqiested to save data |
Felipe Leme | 4bcb01a | 2017-11-21 16:47:13 -0800 | [diff] [blame] | 4062 | // Type TYPE_SUCCESS: The request succeeded right away |
| 4063 | // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4064 | // Type TYPE_FAILURE: The request failed |
| 4065 | // Package: Package of app that was autofilled |
| 4066 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4067 | // NOTE: starting on OS P, it also added the following field: |
| 4068 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4069 | AUTOFILL_DATA_SAVE_REQUEST = 918; |
| 4070 | |
| 4071 | // An auto-fill session was finished |
| 4072 | // Package: Package of app that was autofilled |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4073 | // NOTE: starting on OS P, it also added the following field: |
| 4074 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Philip P. Moltmann | 7b77116 | 2017-03-03 17:22:57 -0800 | [diff] [blame] | 4075 | AUTOFILL_SESSION_FINISHED = 919; |
| 4076 | |
Chris Wren | 14880558 | 2017-03-17 17:18:11 -0400 | [diff] [blame] | 4077 | // meta-event: a reader has checkpointed the log here. |
| 4078 | METRICS_CHECKPOINT = 920; |
| 4079 | |
Fan Zhang | ed1845f | 2017-03-23 14:46:59 -0700 | [diff] [blame] | 4080 | // OPEN: Settings -> Display -> When in VR Mode |
| 4081 | VR_DISPLAY_PREFERENCE = 921; |
| 4082 | |
Casey Burkhardt | f4e9803 | 2017-03-22 22:52:24 -0700 | [diff] [blame] | 4083 | // OPEN: Settings > Accessibility > Magnification |
| 4084 | // CATEGORY: SETTINGS |
| 4085 | // OS: O |
| 4086 | ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922; |
Antony Sargent | b062e90 | 2017-03-23 16:32:04 -0700 | [diff] [blame] | 4087 | |
| 4088 | // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant |
| 4089 | // app. |
| 4090 | // VALUE: The package name of the app |
| 4091 | ACTION_SETTINGS_CLEAR_INSTANT_APP = 923; |
| 4092 | |
Fan Zhang | 1a34e75 | 2017-03-24 13:44:51 -0700 | [diff] [blame] | 4093 | // OPEN: Settings -> System -> Reset options |
| 4094 | RESET_DASHBOARD = 924; |
| 4095 | |
Jason Monk | 8c09ac7 | 2017-03-16 11:53:40 -0400 | [diff] [blame] | 4096 | // ACTION: QS -> Tile clicked |
| 4097 | ACTION_QS_CLICK = 925; |
| 4098 | |
| 4099 | // ACTION: QS -> Secondary click |
| 4100 | ACTION_QS_SECONDARY_CLICK = 926; |
| 4101 | |
| 4102 | // FIELD: Position info in QS clicks |
| 4103 | FIELD_QS_POSITION = 927; |
| 4104 | |
| 4105 | // FIELD: The value of a QS tile when clicked (if applicable) |
| 4106 | FIELD_QS_VALUE = 928; |
| 4107 | |
| 4108 | // ACTION: QS -> Detail panel -> more settings |
| 4109 | ACTION_QS_MORE_SETTINGS = 929; |
| 4110 | |
| 4111 | // ACTION: QS -> Click date |
| 4112 | ACTION_QS_DATE = 930; |
| 4113 | |
Jason Monk | 1b77565 | 2017-03-31 15:42:27 -0400 | [diff] [blame] | 4114 | // ACTION: Event on nav button |
| 4115 | ACTION_NAV_BUTTON_EVENT = 931; |
| 4116 | |
| 4117 | // FIELD: Flags for a nav button event |
| 4118 | FIELD_FLAGS = 932; |
| 4119 | |
| 4120 | // FIELD: Action for a nav button event |
| 4121 | FIELD_NAV_ACTION = 933; |
| 4122 | |
Kevin Chyn | 8d1a528 | 2017-04-06 12:11:04 -0700 | [diff] [blame] | 4123 | // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete |
| 4124 | // CATEGORY: SETTINGS |
| 4125 | // OS: O |
| 4126 | FINGERPRINT_REMOVE_SIDECAR = 934; |
| 4127 | |
Daniel Nishi | 45c23fa | 2017-03-27 13:19:02 -0700 | [diff] [blame] | 4128 | // OPEN: Settings > Storage > Movies & TV |
| 4129 | // CATEGORY: SETTINGS |
| 4130 | // OS: O |
| 4131 | APPLICATIONS_STORAGE_MOVIES = 935; |
| 4132 | |
Abodunrinwa Toki | 54486c1 | 2017-04-19 21:02:36 +0100 | [diff] [blame] | 4133 | // OPEN: Text selection "assist" menu item shown. |
| 4134 | // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER. |
| 4135 | // CATEGORY: TEXT_CONTROLS |
| 4136 | // OS: O |
| 4137 | TEXT_SELECTION_MENU_ITEM_ASSIST = 936; |
| 4138 | |
| 4139 | // ACTION: Text selection "assist" menu item clicked. |
| 4140 | // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER. |
| 4141 | // CATEGORY: TEXT_CONTROLS |
| 4142 | // OS: O |
| 4143 | ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937; |
| 4144 | |
Denis Kuznetsov | 7152a41 | 2017-04-13 11:41:33 +0200 | [diff] [blame] | 4145 | // OPEN: Settings > Security > Managed Device Info > Apps installed |
| 4146 | // CATEGORY: SETTINGS |
| 4147 | // OS: O |
| 4148 | ENTERPRISE_PRIVACY_INSTALLED_APPS = 938; |
| 4149 | |
| 4150 | // OPEN: Settings > Security > Managed Device Info > nnn permissions |
| 4151 | // CATEGORY: SETTINGS |
| 4152 | // OS: O |
| 4153 | ENTERPRISE_PRIVACY_PERMISSIONS = 939; |
| 4154 | |
| 4155 | // OPEN: Settings > Security > Managed Device Info > Default apps |
| 4156 | // CATEGORY: SETTINGS |
| 4157 | // OS: O |
| 4158 | ENTERPRISE_PRIVACY_DEFAULT_APPS = 940; |
| 4159 | |
Julia Reynolds | 80b1807 | 2017-04-23 12:27:07 -0400 | [diff] [blame] | 4160 | // OPEN: Settings > Notifications > An app > A channel > Importance |
| 4161 | // CATEGORY: SETTINGS |
| 4162 | // OS: O |
| 4163 | NOTIFICATION_CHANNEL_IMPORTANCE = 941; |
| 4164 | |
| 4165 | // OPEN: Settings > Notifications > An app > A channel > On the lock screen |
| 4166 | // CATEGORY: SETTINGS |
| 4167 | // OS: O |
| 4168 | NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942; |
| 4169 | |
Chris Wren | 4d6b54d | 2017-04-27 16:56:54 -0400 | [diff] [blame] | 4170 | // This value should never appear in log outputs - it is reserved for |
| 4171 | // internal platform metrics use. |
| 4172 | RESERVED_FOR_LOGBUILDER_UID = 943; |
| 4173 | |
Dianne Hackborn | 83b40f6 | 2017-04-26 13:59:47 -0700 | [diff] [blame] | 4174 | // OPEN: Running background apps notification > List of background apps |
| 4175 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4176 | // OS: O |
| 4177 | RUNNING_BACKGROUND_APPS_DIALOG = 944; |
| 4178 | |
Jorim Jaggi | 515dd68 | 2017-05-05 15:05:07 +0200 | [diff] [blame] | 4179 | // FIELD - The delay from the start of the transition until we just call bindApplication on the |
| 4180 | // client. |
| 4181 | // OS: O |
| 4182 | APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945; |
| 4183 | |
Chris Wren | b392179 | 2017-06-01 13:34:46 -0400 | [diff] [blame] | 4184 | // FIELD - The group ID of a notification. |
| 4185 | // Type: string |
| 4186 | // OS: O |
| 4187 | FIELD_NOTIFICATION_GROUP_ID = 946; |
| 4188 | |
| 4189 | // FIELD - If the notification is a group summary: 1. |
| 4190 | // Type: int encoded boolean |
| 4191 | // OS: O |
| 4192 | FIELD_NOTIFICATION_GROUP_SUMMARY = 947; |
| 4193 | |
Felipe Leme | 637e05e | 2017-12-06 12:09:37 -0800 | [diff] [blame] | 4194 | // An app attempted to forge a different component name in the AssisStructure that would be |
| 4195 | // passed to the autofill service. |
| 4196 | // OS: O (security patch) |
| 4197 | // Package: Real package of the app being autofilled |
| 4198 | // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request |
| 4199 | // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4200 | // NOTE: starting on OS P, it also added the following field: |
| 4201 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | 637e05e | 2017-12-06 12:09:37 -0800 | [diff] [blame] | 4202 | AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948; |
| 4203 | |
| 4204 | // FIELD - The component that an app tried tro forged. |
| 4205 | // Type: string |
| 4206 | // OS: O (security patch) |
| 4207 | FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949; |
| 4208 | |
Chris Wren | 26ca65d | 2016-11-29 10:43:28 -0500 | [diff] [blame] | 4209 | // ---- End O Constants, all O constants go above this line ---- |
| 4210 | |
Daniel Sheng | 2c4bc64 | 2017-04-18 14:17:16 -0700 | [diff] [blame] | 4211 | // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera |
| 4212 | SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986; |
| 4213 | |
jackqdyulei | 92e492e | 2017-04-28 13:04:42 -0700 | [diff] [blame] | 4214 | // OPEN: Settings > Battery > High Usage > Abnormal app page |
| 4215 | // CATEGORY: SETTINGS |
| 4216 | FUELGAUGE_ANOMALY_DETAIL = 987; |
| 4217 | |
| 4218 | // OPEN: Settings > Battery > High Usage |
| 4219 | DIALOG_HANDLE_ANOMALY = 988; |
| 4220 | |
Jonathan Solnit | a413816 | 2017-05-10 21:06:04 -0700 | [diff] [blame] | 4221 | // ACTION: Camera lift gesture |
| 4222 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4223 | // OS: O |
| 4224 | ACTION_CAMERA_LIFT_TRIGGER = 989; |
| 4225 | |
Maurice Lam | 76ae09c | 2017-05-05 12:03:49 -0700 | [diff] [blame] | 4226 | // OPEN: Choose screen lock dialog in Settings |
| 4227 | // CATEGORY: SETTINGS |
| 4228 | // OS: O DR |
| 4229 | SETTINGS_CHOOSE_LOCK_DIALOG = 990; |
| 4230 | |
Maurice Lam | 05b2b8b | 2017-05-15 15:59:59 -0700 | [diff] [blame] | 4231 | // OPEN: Assist Gesture training intro in Settings |
| 4232 | // CATEGORY: SETTINGS |
| 4233 | // OS: O DR |
| 4234 | SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991; |
| 4235 | |
| 4236 | // OPEN: Assist Gesture training enrolling in Settings |
| 4237 | // CATEGORY: SETTINGS |
| 4238 | // OS: O DR |
| 4239 | SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992; |
| 4240 | |
| 4241 | // OPEN: Assist Gesture training finished in Settings |
| 4242 | // CATEGORY: SETTINGS |
| 4243 | // OS: O DR |
| 4244 | SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993; |
| 4245 | |
Fan Zhang | c666a20 | 2017-05-18 17:50:20 -0700 | [diff] [blame] | 4246 | // FIELD: The numeric preference value (of type long) when it is changed in Settings |
| 4247 | FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994; |
| 4248 | |
| 4249 | // FIELD: The numeric preference value (of type float) when it is changed in Settings |
| 4250 | FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995; |
| 4251 | |
Philip Quinn | 0f9566d | 2017-05-23 10:32:08 -0700 | [diff] [blame] | 4252 | // OPEN: Settings > System > Languages & input > Assist gesture |
| 4253 | // CATEGORY: SETTINGS |
| 4254 | // OS: O DR |
| 4255 | SETTINGS_ASSIST_GESTURE = 996; |
| 4256 | |
| 4257 | // ACTION: Assist gesture released without triggering |
| 4258 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4259 | // OS: O DR |
| 4260 | ASSIST_GESTURE_RELEASED = 997; |
| 4261 | |
| 4262 | // ACTION: Assist gesture primed |
| 4263 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4264 | // OS: O DR |
| 4265 | ASSIST_GESTURE_PRIMED = 998; |
| 4266 | |
| 4267 | // ACTION: Assist gesture triggered |
Kevin Chyn | aa8a511 | 2017-08-16 11:43:41 -0700 | [diff] [blame] | 4268 | // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF |
Philip Quinn | 0f9566d | 2017-05-23 10:32:08 -0700 | [diff] [blame] | 4269 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4270 | // OS: O DR |
| 4271 | ASSIST_GESTURE_TRIGGERED = 999; |
| 4272 | |
Fan Zhang | 238162b | 2017-05-25 14:01:41 -0700 | [diff] [blame] | 4273 | // ACTION: Update default app from Settings |
| 4274 | ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000; |
| 4275 | |
| 4276 | // FIELD - Query length when Settings search result is clicked |
Fan Zhang | 449502e | 2017-06-26 12:07:59 -0700 | [diff] [blame] | 4277 | FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001; |
Fan Zhang | 238162b | 2017-05-25 14:01:41 -0700 | [diff] [blame] | 4278 | |
| 4279 | // FIELD - Number of results when Settings search result is clicked |
Fan Zhang | 449502e | 2017-06-26 12:07:59 -0700 | [diff] [blame] | 4280 | FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002; |
Fan Zhang | 238162b | 2017-05-25 14:01:41 -0700 | [diff] [blame] | 4281 | |
Adrian Roos | 1c81d77 | 2017-05-25 18:00:21 -0700 | [diff] [blame] | 4282 | // OPEN: Settings > Display > Ambient Display |
| 4283 | // CATEGORY: SETTINGS |
| 4284 | // OS: O DR |
| 4285 | AMBIENT_DISPLAY_SETTINGS = 1003; |
| 4286 | |
Hugo Benichi | 11da42b | 2017-05-31 11:11:37 +0900 | [diff] [blame] | 4287 | // ACTION: CaptivePortalLoginActivity starts |
| 4288 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4289 | // OS: O DR |
| 4290 | ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004; |
| 4291 | |
| 4292 | // ACTION: CaptivePortalLoginActivity auto-closes |
| 4293 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4294 | // OS: O DR |
| 4295 | ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005; |
| 4296 | |
| 4297 | // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network |
| 4298 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4299 | // OS: O DR |
| 4300 | ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006; |
| 4301 | |
| 4302 | // ACTION: CaptivePortalLoginActivity > Menu > Use this network |
| 4303 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4304 | // OS: O DR |
| 4305 | ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007; |
| 4306 | |
| 4307 | // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network |
| 4308 | // CATEGORY: SETTINGS |
| 4309 | // OS: O DR |
| 4310 | ACTION_WIFI_SIGNIN = 1008; |
| 4311 | |
Antony Sargent | f3cc317 | 2017-05-04 14:58:06 -0700 | [diff] [blame] | 4312 | // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device) |
| 4313 | // CATEGORY: SETTINGS |
| 4314 | // OS: O DR |
| 4315 | BLUETOOTH_DEVICE_DETAILS = 1009; |
| 4316 | |
fanzhang172 | 255759d | 2017-06-05 21:43:47 -0700 | [diff] [blame] | 4317 | // OPEN: Settings > credential pages - prompt for key guard configuration confirmation |
| 4318 | CONFIGURE_KEYGUARD_DIALOG = 1010; |
| 4319 | |
Fan Zhang | e33c70d | 2017-06-06 12:37:13 -0700 | [diff] [blame] | 4320 | // Open: Settings > Search > No Result View |
| 4321 | SETTINGS_SEARCH_NO_RESULT = 1011; |
| 4322 | |
Kevin Chyn | 4fddc9f | 2017-06-05 11:28:09 -0700 | [diff] [blame] | 4323 | // OPEN: Assist Gesture before training |
| 4324 | // CATEGORY: SETTINGS |
| 4325 | // OS: O DR |
| 4326 | SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012; |
| 4327 | |
Hugo Benichi | 9e8ab43 | 2017-06-05 14:52:24 +0900 | [diff] [blame] | 4328 | // CaptivePortalLoginActivity displays SSL error page |
| 4329 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4330 | // OS: O DR |
| 4331 | CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013; |
| 4332 | |
Fan Zhang | 1a0fc99 | 2017-06-13 13:45:21 -0700 | [diff] [blame] | 4333 | // OPEN: Settings > Network > Tether > Wi-Fi hotspot |
| 4334 | WIFI_TETHER_SETTINGS = 1014; |
| 4335 | |
Antony Sargent | c3b5da6 | 2017-06-16 11:50:13 -0700 | [diff] [blame] | 4336 | // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device) |
| 4337 | // -> Edit name button. |
| 4338 | // CATEGORY: SETTINGS |
| 4339 | // OS: O DR |
| 4340 | DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015; |
| 4341 | |
Fan Zhang | 543587d | 2017-06-19 12:32:14 -0700 | [diff] [blame] | 4342 | // ACTION: Settings > Notification Settings > Open application notification |
| 4343 | // CATEGORY: SETTINGS |
| 4344 | // OS: O DR |
| 4345 | ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016; |
| 4346 | |
| 4347 | // ACTION: Settings > App Info > Open app settings |
| 4348 | // CATEGORY: SETTINGS |
| 4349 | // OS: O DR |
| 4350 | ACTION_OPEN_APP_SETTING = 1017; |
| 4351 | |
jackqdyulei | 2f1a359 | 2017-06-19 13:11:05 -0700 | [diff] [blame] | 4352 | // OPEN: Settings > Connected devices > Bluetooth > Pair new device |
| 4353 | // CATEGORY: SETTINGS |
| 4354 | // OS: O DR |
| 4355 | BLUETOOTH_PAIRING = 1018; |
| 4356 | |
Matthew Fritze | ad8e6e8 | 2017-06-12 14:23:59 -0700 | [diff] [blame] | 4357 | // ACTION: Collect PSD Signals |
| 4358 | // CATEGORY: SETTINGS |
| 4359 | // OS: O DR |
| 4360 | ACTION_PSD_LOADER = 1019; |
| 4361 | |
jackqdyulei | 602bcc9 | 2017-06-21 15:17:53 -0700 | [diff] [blame] | 4362 | // ACTION: Background check action on an app |
| 4363 | // CATEGORY: SETTINGS |
| 4364 | // OS: O DR |
| 4365 | ACTION_APP_BACKGROUND_CHECK = 1020; |
| 4366 | |
| 4367 | // ACTION: Location check action on an app |
| 4368 | // CATEGORY: SETTINGS |
| 4369 | // OS: O DR |
| 4370 | ACTION_APP_LOCATION_CHECK = 1021; |
| 4371 | |
Charlie Wang | 15a36ed | 2017-06-14 14:46:39 -0700 | [diff] [blame] | 4372 | // Device headset status |
| 4373 | // CATEGORY: OTHER |
| 4374 | // SUBTYPE: 1 is DON, 2 is DOFF |
| 4375 | // OS: O DR |
| 4376 | ACTION_HEADSET_STATUS = 1022; |
| 4377 | |
| 4378 | // Device Headset Plug status |
| 4379 | // CATEGORY: OTHER |
| 4380 | // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug |
| 4381 | // OS: O DR |
| 4382 | ACTION_HEADSET_PLUG = 1023; |
| 4383 | |
| 4384 | // Device Headset battery level on Plug |
| 4385 | // CATEGORY: OTHER |
| 4386 | // FIELD - The battery percentage when the user decided to plug in |
| 4387 | // Type: integer |
| 4388 | // OS: O DR |
| 4389 | FIELD_PLUG_BATTERY_PERCENTAGE = 1024; |
| 4390 | |
Charlie Wang | 566ec70 | 2017-06-26 15:30:03 -0700 | [diff] [blame] | 4391 | // Device Headset battery level on Plug |
| 4392 | // CATEGORY: OTHER |
| 4393 | // FIELD - The battery percentage when the user decided to plug in |
| 4394 | // Type: integer |
| 4395 | // OS: O DR |
| 4396 | FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025; |
| 4397 | |
Charlie Wang | 15a36ed | 2017-06-14 14:46:39 -0700 | [diff] [blame] | 4398 | // Device Headset Pose status |
| 4399 | // CATEGORY: OTHER |
| 4400 | // SUBTYPE: 1 is 6DOF, 2 is 3DOF |
| 4401 | // OS: O DR |
Charlie Wang | 566ec70 | 2017-06-26 15:30:03 -0700 | [diff] [blame] | 4402 | ACTION_HEADSET_POSE_STATUS = 1026; |
| 4403 | |
| 4404 | // Device Headset Usage session time |
| 4405 | // CATEGORY: OTHER |
| 4406 | // FIELD - The time the headset was used in a session |
| 4407 | // OS: O DR |
| 4408 | FIELD_SESSION_TIME_MS = 1027; |
| 4409 | |
| 4410 | // Device Headset Idle time |
| 4411 | // CATEGORY: OTHER |
| 4412 | // FIELD - The time in between each session |
| 4413 | // OS: O DR |
| 4414 | FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028; |
| 4415 | |
| 4416 | // Device Headset charge session time |
| 4417 | // CATEGORY: OTHER |
| 4418 | // FIELD - The time taken for each charge |
| 4419 | // OS: O DR |
| 4420 | FIELD_TIME_OF_CHARGE_MS = 1029; |
| 4421 | |
| 4422 | // Device Headset time between charge |
| 4423 | // CATEGORY: OTHER |
| 4424 | // FIELD - The time in between each charge |
| 4425 | // OS: O DR |
| 4426 | FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030; |
Charlie Wang | 15a36ed | 2017-06-14 14:46:39 -0700 | [diff] [blame] | 4427 | |
Antony Sargent | ca701a2 | 2017-07-05 17:02:00 -0700 | [diff] [blame] | 4428 | // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device) |
| 4429 | // -> Forget button. |
| 4430 | // CATEGORY: SETTINGS |
| 4431 | // OS: O DR |
| 4432 | DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031; |
| 4433 | |
Eino-Ville Talvala | 31ad8a3 | 2017-07-10 16:23:50 -0700 | [diff] [blame] | 4434 | // An event from the camera service |
| 4435 | // CATEGORY: OTHER |
| 4436 | // SUBTYPE: CameraEvent |
| 4437 | // OS: O DR |
| 4438 | ACTION_CAMERA_EVENT = 1032; |
| 4439 | |
Matthew Fritze | dc2ad28 | 2017-07-25 13:13:21 -0700 | [diff] [blame] | 4440 | // OPEN: Settings > Trampoline Intent > Settings page |
| 4441 | // CATEGORY: SETTINGS |
| 4442 | // OS: O DR |
| 4443 | TRAMPOLINE_SETTINGS_EVENT = 1033; |
| 4444 | |
Chris Wren | 9a4f266 | 2017-06-29 10:10:02 -0400 | [diff] [blame] | 4445 | // ---- End O-DR1 Constants, all O-DR1 constants go above this line ---- |
| 4446 | |
Malcolm Chen | 2106254 | 2017-06-20 11:36:01 -0700 | [diff] [blame] | 4447 | // ACTION: Settings > Network & Internet > Mobile network > Mobile data |
| 4448 | // CATEGORY: SETTINGS |
| 4449 | // OS: O MR |
| 4450 | ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081; |
| 4451 | |
| 4452 | // ACTION: Settings > Network & Internet > Mobile network > Data usage |
| 4453 | // CATEGORY: SETTINGS |
| 4454 | // OS: O MR |
| 4455 | ACTION_MOBILE_NETWORK_DATA_USAGE = 1082; |
| 4456 | |
Soroosh Mariooryad | 83310bc | 2017-06-30 11:42:14 -0700 | [diff] [blame] | 4457 | // FIELD - State of asynchronous ranking when Settings search result is clicked |
| 4458 | // CATEGORY: SETTINGS |
| 4459 | // OS: O MR |
| 4460 | FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083; |
| 4461 | |
Oren Blasberg | 68e8e8a | 2017-07-07 13:36:28 -0700 | [diff] [blame] | 4462 | // ACTION: Settings > Connected devices > SMS Mirroring |
| 4463 | // CATEGORY: SETTINGS |
| 4464 | // OS: O MR |
| 4465 | ACTION_SETTINGS_SMS_MIRRORING = 1084; |
| 4466 | |
Kang Li | 2c57189 | 2017-07-05 14:47:32 -0700 | [diff] [blame] | 4467 | // ACTION: Chooser picked a ranked target. |
| 4468 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4469 | // OS: O MR |
| 4470 | ACTION_TARGET_SELECTED = 1085; |
| 4471 | |
| 4472 | // FIELD - is category used in Chooser: 1. |
| 4473 | // Type: int encoded boolean |
| 4474 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4475 | // OS: O MR |
| 4476 | FIELD_IS_CATEGORY_USED = 1086; |
| 4477 | |
| 4478 | // FIELD - ranked position of selected target for Chooser. |
| 4479 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 4480 | // OS: O MR |
| 4481 | FIELD_RANKED_POSITION = 1087; |
| 4482 | |
Rajeev Kumar | a8ba66e | 2017-07-19 16:51:55 -0700 | [diff] [blame] | 4483 | // OPEN: Settings > Data plan usage |
| 4484 | // CATEGORY: SETTINGS |
| 4485 | // OS: O MR |
| 4486 | DATA_PLAN_USAGE_SUMMARY = 1088; |
| 4487 | |
Doris Ling | ce007eb | 2017-08-09 13:59:46 -0700 | [diff] [blame] | 4488 | // FIELD: The numeric preference value (of type int) when it is changed in Settings |
| 4489 | FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089; |
| 4490 | |
Jorim Jaggi | 4d27b84 | 2017-08-17 17:22:26 +0200 | [diff] [blame] | 4491 | // ACTION: Logged when the app has notified that it has fully drawn. See |
| 4492 | // Activity.reportFullyDrawn(). |
| 4493 | APP_TRANSITION_REPORTED_DRAWN = 1090; |
| 4494 | |
| 4495 | // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of |
| 4496 | // the app transition. |
| 4497 | APP_TRANSITION_REPORTED_DRAWN_MS = 1091; |
| 4498 | |
Daniel Nishi | a86115f | 2017-08-23 10:27:08 -0700 | [diff] [blame] | 4499 | // OPEN: Settings > Storage > Photos & Videos |
| 4500 | // CATEGORY: SETTINGS |
| 4501 | // OS: O MR |
| 4502 | APPLICATIONS_STORAGE_PHOTOS = 1092; |
| 4503 | |
Jason Monk | f8c2f7b | 2017-09-06 09:22:29 -0400 | [diff] [blame] | 4504 | // ACTION: Logged when the status bar icons change. |
| 4505 | // OS: O MR |
| 4506 | STATUS_BAR_ICONS_CHANGED = 1093; |
| 4507 | |
| 4508 | // FIELD: Bitfield indicating which icons are shown. |
| 4509 | // OS: O MR |
| 4510 | FIELD_STATUS_ICONS = 1094; |
| 4511 | |
| 4512 | // FIELD: Number of status icons currently shown. |
| 4513 | // OS: O MR |
| 4514 | FIELD_NUM_STATUS_ICONS = 1095; |
| 4515 | |
Jack He | 4b60579 | 2017-09-01 11:48:30 -0700 | [diff] [blame] | 4516 | // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app |
| 4517 | // CATEGORY: SETTINGS |
| 4518 | // OS: O MR |
Jason Monk | aa60c74 | 2017-09-07 08:26:28 -0400 | [diff] [blame] | 4519 | ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096; |
Jack He | 4b60579 | 2017-09-01 11:48:30 -0700 | [diff] [blame] | 4520 | |
Soroosh Mariooryad | ee68423 | 2017-09-07 08:45:18 -0700 | [diff] [blame] | 4521 | // FIELD - Whether smart suggestion ranking was enabled or not |
| 4522 | // Type: int encoded boolean |
| 4523 | // CATEGORY: SETTINGS |
| 4524 | // OS: O MR |
| 4525 | FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097; |
| 4526 | |
James Hawkins | b1dc6ca | 2017-09-12 13:16:03 -0700 | [diff] [blame] | 4527 | // ACTION: The device boots |
| 4528 | ACTION_BOOT = 1098; |
| 4529 | |
| 4530 | // FIELD: A string value representing some state of the platform, e.g., boot reason |
| 4531 | FIELD_PLATFORM_REASON = 1099; |
| 4532 | |
Jan Althaus | 786a39d | 2017-09-15 10:41:16 +0200 | [diff] [blame] | 4533 | // CATEGORY: The category for all actions relating to selection session logging. |
| 4534 | // OS: O MR |
| 4535 | TEXT_SELECTION_SESSION = 1100; |
| 4536 | |
| 4537 | // ACTION: A selection session started (i.e. the selection handles appeared) |
| 4538 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4539 | // OS: O MR |
| 4540 | ACTION_TEXT_SELECTION_START = 1101; |
| 4541 | |
| 4542 | // ACTION: The user modified the selection (e.g. by dragging the handles) |
| 4543 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4544 | // OS: O MR |
| 4545 | ACTION_TEXT_SELECTION_MODIFY = 1102; |
| 4546 | |
| 4547 | // ACTION: The user modified the selection by pressing the "select all" button. |
| 4548 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4549 | // OS: O MR |
| 4550 | ACTION_TEXT_SELECTION_SELECT_ALL = 1103; |
| 4551 | |
| 4552 | // ACTION: The user modified the selection by pressing on a word in a multi word selection |
| 4553 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4554 | // OS: O MR |
| 4555 | ACTION_TEXT_SELECTION_RESET = 1104; |
| 4556 | |
| 4557 | // ACTION: Smart selection made a single word prediction |
| 4558 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4559 | // OS: O MR |
| 4560 | ACTION_TEXT_SELECTION_SMART_SINGLE = 1105; |
| 4561 | |
| 4562 | // ACTION: Smart selection made a multi word prediction |
| 4563 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4564 | // OS: O MR |
| 4565 | ACTION_TEXT_SELECTION_SMART_MULTI = 1106; |
| 4566 | |
| 4567 | // ACTION: The app made an automatic selection on the user's behalf (not smart selection) |
| 4568 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4569 | // OS: O MR |
| 4570 | ACTION_TEXT_SELECTION_AUTO = 1107; |
| 4571 | |
| 4572 | // ACTION: A selection session ended with the user typing over the text |
| 4573 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4574 | // OS: O MR |
| 4575 | ACTION_TEXT_SELECTION_OVERTYPE = 1108; |
| 4576 | |
| 4577 | // ACTION: A selection session ended with the user copying the text |
| 4578 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4579 | // OS: O MR |
| 4580 | ACTION_TEXT_SELECTION_COPY = 1109; |
| 4581 | |
| 4582 | // ACTION: A selection session ended with the user pasting over the text |
| 4583 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4584 | // OS: O MR |
| 4585 | ACTION_TEXT_SELECTION_PASTE = 1110; |
| 4586 | |
| 4587 | // ACTION: A selection session ended with the user cutting the text |
| 4588 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4589 | // OS: O MR |
| 4590 | ACTION_TEXT_SELECTION_CUT = 1111; |
| 4591 | |
| 4592 | // ACTION: A selection session ended with the user pressing the share button |
| 4593 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4594 | // OS: O MR |
| 4595 | ACTION_TEXT_SELECTION_SHARE = 1112; |
| 4596 | |
| 4597 | // ACTION: A selection session ended with the user pressing the smart share button |
| 4598 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4599 | // OS: O MR |
| 4600 | ACTION_TEXT_SELECTION_SMART_SHARE = 1113; |
| 4601 | |
| 4602 | // ACTION: A selection session ended with the user dragging the text |
| 4603 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4604 | // OS: O MR |
| 4605 | ACTION_TEXT_SELECTION_DRAG = 1114; |
| 4606 | |
| 4607 | // ACTION: A selection session ended with the user abandoning the selection |
| 4608 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4609 | // OS: O MR |
| 4610 | ACTION_TEXT_SELECTION_ABANDON = 1115; |
| 4611 | |
| 4612 | // ACTION: A selection session ended with the user picking an unhandled action bar item |
| 4613 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4614 | // OS: O MR |
| 4615 | ACTION_TEXT_SELECTION_OTHER = 1116; |
| 4616 | |
| 4617 | // FIELD: Time in milliseconds from the start of the session to this event |
| 4618 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4619 | // OS: O MR |
| 4620 | FIELD_SELECTION_SINCE_START = 1117; |
| 4621 | |
| 4622 | // FIELD: time in milliseconds between the last event in the session and this one |
| 4623 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4624 | // OS: O MR |
| 4625 | FIELD_SELECTION_SINCE_PREVIOUS = 1118; |
| 4626 | |
| 4627 | // FIELD: a random uid for a selection session (lasting from select start to end) |
| 4628 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4629 | // OS: O MR |
| 4630 | FIELD_SELECTION_SESSION_ID = 1119; |
| 4631 | |
| 4632 | // FIELD: the sequence number of the event in the session |
| 4633 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4634 | // OS: O MR |
| 4635 | FIELD_SELECTION_SESSION_INDEX = 1120; |
| 4636 | |
| 4637 | // FIELD: a concatenation of the widget type and ML model version. |
| 4638 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4639 | // OS: O MR |
| 4640 | FIELD_SELECTION_VERSION_TAG = 1121; |
| 4641 | |
| 4642 | // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two |
| 4643 | // packed 16bit integers. (start in MSBs, end in LSBs) |
| 4644 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4645 | // OS: O MR |
| 4646 | FIELD_SELECTION_RANGE = 1122; |
| 4647 | |
| 4648 | // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator), |
| 4649 | // stored as two packed 16bit integers. (start in MSBs, end in LSBs) |
| 4650 | // CATEGORY: TEXT_SELECTION_SESSION |
| 4651 | // OS: O MR |
| 4652 | FIELD_SELECTION_SMART_RANGE = 1123; |
| 4653 | |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4654 | // The value of an autofillable and savable view was reset |
| 4655 | // Package: Package of app that was autofilled |
| 4656 | // OS: O MR |
| 4657 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4658 | // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4659 | // NOTE: starting on OS P, it also added the following field: |
| 4660 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4661 | AUTOFILL_VALUE_RESET = 1124; |
| 4662 | |
| 4663 | // Tag of AUTOFILL_VALUE_RESET |
| 4664 | // OS: O MR |
| 4665 | FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125; |
| 4666 | |
Felipe Leme | b4cd622 | 2017-09-26 09:11:32 -0700 | [diff] [blame] | 4667 | // An autofill dataset authentication succeeded |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4668 | // Package: Package of app that was autofilled |
| 4669 | // OS: O MR |
| 4670 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4671 | // NOTE: starting on OS P, it also added the following field: |
| 4672 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4673 | AUTOFILL_DATASET_AUTHENTICATED = 1126; |
| 4674 | |
Felipe Leme | b4cd622 | 2017-09-26 09:11:32 -0700 | [diff] [blame] | 4675 | // An autofill service provided an invalid dataset authentication |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4676 | // Package: Package of app that was autofilled |
| 4677 | // OS: O MR |
| 4678 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4679 | // NOTE: starting on OS P, it also added the following field: |
| 4680 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4681 | AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127; |
| 4682 | |
Felipe Leme | b4cd622 | 2017-09-26 09:11:32 -0700 | [diff] [blame] | 4683 | // An autofill service provided an invalid authentication extra |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4684 | // Package: Package of app that was autofilled |
| 4685 | // OS: O MR |
| 4686 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4687 | // NOTE: starting on OS P, it also added the following field: |
| 4688 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4689 | AUTOFILL_INVALID_AUTHENTICATION = 1128; |
| 4690 | |
Felipe Leme | 2c88842 | 2017-10-26 12:46:35 -0700 | [diff] [blame] | 4691 | // An autofill service used a custom description (using RemoteViews) in the autofill save UI |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4692 | // Package: Package of app that is autofilled |
| 4693 | // OS: O MR |
| 4694 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4695 | // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4696 | // NOTE: starting on OS P, it also added the following field: |
| 4697 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4698 | AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129; |
| 4699 | |
| 4700 | // FIELD - Type of save object passed by the service when the Save UI is shown |
| 4701 | // OS: O MR |
| 4702 | FIELD_AUTOFILL_SAVE_TYPE = 1130; |
| 4703 | |
Felipe Leme | 2c88842 | 2017-10-26 12:46:35 -0700 | [diff] [blame] | 4704 | // An autofill service used a custom subtitle (String) in the autofill save UI |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4705 | // Package: Package of app that is autofilled |
| 4706 | // OS: O MR |
| 4707 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4708 | // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4709 | // NOTE: starting on OS P, it also added the following field: |
| 4710 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4711 | AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131; |
| 4712 | |
Felipe Leme | 2c88842 | 2017-10-26 12:46:35 -0700 | [diff] [blame] | 4713 | // User tapped a link in the custom description of the autofill save UI provided by an autofill service |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4714 | // Package: Package of app that is autofilled |
| 4715 | // OS: O MR |
| 4716 | // Type TYPE_UNKNOWN: The link was not properly set by the service |
| 4717 | // Type TYPE_OPEN: The link launched an activity |
| 4718 | // Type TYPE_FAILURE: The link could not launc an activity |
| 4719 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4720 | // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4721 | // NOTE: starting on OS P, it also added the following field: |
| 4722 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4723 | AUTOFILL_SAVE_LINK_TAPPED = 1132; |
| 4724 | |
| 4725 | // Result of the validation on save when an autofill service provided a validator |
| 4726 | // Package: Package of app that is autofilled |
| 4727 | // OS: O MR |
| 4728 | // Type TYPE_FAILURE: The validation could not be performed due to an error |
| 4729 | // Type TYPE_SUCCESS: The validation passed |
| 4730 | // Type TYPE_DISMISS: The validation failed |
| 4731 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4732 | // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4733 | // NOTE: starting on OS P, it also added the following field: |
| 4734 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4735 | AUTOFILL_SAVE_VALIDATION = 1133; |
| 4736 | |
Felipe Leme | 2c88842 | 2017-10-26 12:46:35 -0700 | [diff] [blame] | 4737 | // Result of an operation in the autofill save UI after the user tapped a link in the custom description |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4738 | // provided by the autofill service |
| 4739 | // Package: Package of app that is autofilled |
| 4740 | // OS: O MR |
Felipe Leme | 2c88842 | 2017-10-26 12:46:35 -0700 | [diff] [blame] | 4741 | // Type TYPE_OPEN: The autofill save UI was restored |
| 4742 | // Type TYPE_DISMISS: The autofill save UI was destroyed |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4743 | // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4744 | // NOTE: starting on OS P, it also added the following field: |
| 4745 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | b22d635 | 2017-09-08 20:03:53 -0700 | [diff] [blame] | 4746 | AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134; |
| 4747 | |
Felipe Leme | 9d41449 | 2017-09-20 13:55:28 -0700 | [diff] [blame] | 4748 | // Autofill service called API that disables itself |
| 4749 | // Package: Package of the autofill service |
| 4750 | // OS: O MR |
| 4751 | AUTOFILL_SERVICE_DISABLED_SELF = 1135; |
| 4752 | |
Felipe Leme | b659adb | 2018-01-18 15:21:36 -0800 | [diff] [blame] | 4753 | // Reports how long it took to show the autofill UI after a field was focused |
| 4754 | // Tag FIELD_AUTOFILL_DURATION: Duration in ms |
Felipe Leme | c660c4c | 2017-09-22 09:23:02 -0700 | [diff] [blame] | 4755 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4756 | // Package: Package of the autofill service |
| 4757 | // OS: O MR |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4758 | // NOTE: starting on OS P, it also added the following field: |
| 4759 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | c660c4c | 2017-09-22 09:23:02 -0700 | [diff] [blame] | 4760 | AUTOFILL_UI_LATENCY = 1136; |
| 4761 | |
Chris Wren | 21a2e72 | 2017-10-02 17:44:53 -0400 | [diff] [blame] | 4762 | // Action: the snooze leave-behind was shown after the user clicked the snooze icon |
| 4763 | // OS: O MR |
| 4764 | NOTIFICATION_SNOOZE_CLICKED = 1137; |
| 4765 | |
| 4766 | // Action: user selected a notification snooze duration from the drop down |
| 4767 | // OS: O MR |
| 4768 | NOTIFICATION_SELECT_SNOOZE = 1138; |
| 4769 | |
| 4770 | // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events |
| 4771 | // OS: O MR |
| 4772 | FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139; |
| 4773 | |
| 4774 | // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected |
| 4775 | // OS: O MR |
| 4776 | FIELD_NOTIFICATION_SNOOZE_INDEX = 1140; |
| 4777 | |
| 4778 | // Action: user tapped undo on the notification snooze leave-behind |
| 4779 | // OS: O MR |
| 4780 | NOTIFICATION_UNDO_SNOOZE = 1141; |
| 4781 | |
| 4782 | // Action: user togged the visibility of the notification snooze options drop down |
| 4783 | // OS: O MR |
| 4784 | NOTIFICATION_SNOOZE_OPTIONS = 1142; |
| 4785 | |
Romain Guy | 62e8c17 | 2017-10-24 21:37:34 +0100 | [diff] [blame] | 4786 | // OPEN: Settings > Display > Colors |
| 4787 | // CATEGORY: SETTINGS |
| 4788 | // OS: O MR |
| 4789 | COLOR_MODE_SETTINGS = 1143; |
| 4790 | |
Jorim Jaggi | 172e99f | 2017-10-20 14:33:18 +0200 | [diff] [blame] | 4791 | // Enclosing category for group of APP_TRANSITION_FOO events, |
| 4792 | // logged when we cancel an app transition. |
| 4793 | APP_TRANSITION_CANCELLED = 1144; |
| 4794 | |
Felipe Leme | b659adb | 2018-01-18 15:21:36 -0800 | [diff] [blame] | 4795 | // Tag of a field representing a duration on autofill-related metrics. |
| 4796 | FIELD_AUTOFILL_DURATION = 1145; |
| 4797 | |
Doris Ling | ce007eb | 2017-08-09 13:59:46 -0700 | [diff] [blame] | 4798 | // ---- End O-MR1 Constants, all O-MR1 constants go above this line ---- |
| 4799 | |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4800 | // OPEN: Settings > Network & Internet > Mobile network |
| 4801 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4802 | SETTINGS_MOBILE_NETWORK_CATEGORY = 1200; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4803 | |
| 4804 | // ACTION: Settings > Network & Internet > Mobile network > Roaming |
| 4805 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4806 | ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4807 | |
| 4808 | // ACTION: Settings > Network & Internet > Mobile network > Advanced |
| 4809 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4810 | ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4811 | |
| 4812 | // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode |
| 4813 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4814 | ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4815 | |
| 4816 | // ACTION: Settings > Network & Internet > Mobile network > Preferred network type |
| 4817 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4818 | ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4819 | |
| 4820 | // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks) |
| 4821 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4822 | ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4823 | |
| 4824 | // OPEN: Settings > Network & Internet > Mobile network > Carrier |
| 4825 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4826 | ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4827 | |
| 4828 | // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling |
| 4829 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4830 | ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4831 | |
| 4832 | // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling |
| 4833 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4834 | ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4835 | |
| 4836 | // ACTION: Settings > Network & Internet > Mobile network > Automatically select network |
| 4837 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4838 | ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4839 | |
| 4840 | // ACTION: Settings > Network & Internet > Mobile network > Network |
| 4841 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4842 | ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4843 | |
Malcolm Chen | 0cdebf4 | 2018-04-05 15:45:48 -0700 | [diff] [blame] | 4844 | // Not used anymore. |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4845 | FIELD_MOBILE_NETWORK = 1211; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4846 | |
| 4847 | // OPEN: Settings > Network & Internet > Mobile network > Access Point Names |
| 4848 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4849 | ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4850 | |
| 4851 | // OPEN: Settings > Network & Internet > Mobile network > Carrier settings |
| 4852 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4853 | ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4854 | |
| 4855 | // OPEN: Settings > Network & Internet > Mobile network > System select |
| 4856 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4857 | ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4858 | |
| 4859 | // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription |
| 4860 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4861 | ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4862 | |
| 4863 | // ACTION: Settings > Network & Internet > Mobile network > Set up data service |
| 4864 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4865 | ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216; |
Malcolm Chen | 8c2b471 | 2017-07-25 15:48:44 -0700 | [diff] [blame] | 4866 | |
Fan Zhang | a2f2c91 | 2017-08-15 17:20:37 -0700 | [diff] [blame] | 4867 | // OPEN: Settings > Developer Options > Experiment dashboard |
| 4868 | // CATEGORY: SETTINGS |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4869 | SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217; |
Fan Zhang | a2f2c91 | 2017-08-15 17:20:37 -0700 | [diff] [blame] | 4870 | |
Julia Reynolds | 005c8b9 | 2017-08-24 10:35:53 -0400 | [diff] [blame] | 4871 | // OPEN: Settings > Notifications > [App] > Topic Notifications |
| 4872 | // CATEGORY: SETTINGS |
| 4873 | // OS: P |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4874 | NOTIFICATION_CHANNEL_GROUP = 1218; |
Julia Reynolds | 005c8b9 | 2017-08-24 10:35:53 -0400 | [diff] [blame] | 4875 | |
Fan Zhang | 3af4fbc | 2017-09-10 14:38:29 -0700 | [diff] [blame] | 4876 | // OPEN: Settings > Developer options > Enable > Info dialog |
| 4877 | // CATEGORY: SETTINGS |
| 4878 | // OS: P |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4879 | DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219; |
Fan Zhang | 3af4fbc | 2017-09-10 14:38:29 -0700 | [diff] [blame] | 4880 | |
jeffreyhuang | 57359c0 | 2017-09-18 11:34:00 -0700 | [diff] [blame] | 4881 | // OPEN: Settings > Developer options > OEM unlocking > Info dialog |
| 4882 | // CATEGORY: SETTINGS |
| 4883 | // OS: P |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4884 | DIALOG_ENABLE_OEM_UNLOCKING = 1220; |
jeffreyhuang | 57359c0 | 2017-09-18 11:34:00 -0700 | [diff] [blame] | 4885 | |
Kevin Chyn | 60eea71 | 2017-09-26 16:03:05 -0700 | [diff] [blame] | 4886 | // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] |
| 4887 | // CATEGORY: SETTINGS |
| 4888 | // OS: P |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4889 | FINGERPRINT_AUTHENTICATE_SIDECAR = 1221; |
Kevin Chyn | 60eea71 | 2017-09-26 16:03:05 -0700 | [diff] [blame] | 4890 | |
jeffreyhuang | 37c4b13 | 2017-09-21 14:09:20 -0700 | [diff] [blame] | 4891 | // OPEN: Settings > Developer options > USB debugging > Info dialog |
| 4892 | // CATEGORY: SETTINGS |
| 4893 | // OS: P |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4894 | DIALOG_ENABLE_ADB = 1222; |
jeffreyhuang | 37c4b13 | 2017-09-21 14:09:20 -0700 | [diff] [blame] | 4895 | |
jeffreyhuang | 9afc8d7 | 2017-10-02 15:50:12 -0700 | [diff] [blame] | 4896 | // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog |
| 4897 | // CATEGORY: SETTINGS |
| 4898 | // OS: P |
Chris Wren | 1cb7d27 | 2017-10-03 13:22:01 -0400 | [diff] [blame] | 4899 | DIALOG_CLEAR_ADB_KEYS = 1223; |
jeffreyhuang | 9afc8d7 | 2017-10-02 15:50:12 -0700 | [diff] [blame] | 4900 | |
Fan Zhang | e5b3430 | 2017-10-09 15:58:38 -0700 | [diff] [blame] | 4901 | // Open: Settings > Developer options > Quick setting tile config |
jeffreyhuang | 49de125 | 2017-10-05 15:25:14 -0700 | [diff] [blame] | 4902 | // CATEGORY: SETTINGS |
| 4903 | // OS: P |
Fan Zhang | e5b3430 | 2017-10-09 15:58:38 -0700 | [diff] [blame] | 4904 | DEVELOPMENT_QS_TILE_CONFIG = 1224; |
| 4905 | |
jeffreyhuang | 49de125 | 2017-10-05 15:25:14 -0700 | [diff] [blame] | 4906 | // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog |
| 4907 | // CATEGORY: SETTINGS |
| 4908 | // OS: P |
| 4909 | DIALOG_LOG_PERSIST = 1225; |
| 4910 | |
Beverly | 0421687 | 2017-09-28 10:55:32 -0400 | [diff] [blame] | 4911 | // ACTION: DND Settings > Priority only allows > Alarms toggle |
| 4912 | // SUBTYPE: 0 is off, 1 is on |
| 4913 | // CATEGORY: SETTINGS |
| 4914 | // OS: P |
Felipe Leme | 2fe3ade | 2017-09-28 15:03:36 -0700 | [diff] [blame] | 4915 | ACTION_ZEN_ALLOW_ALARMS = 1226; |
Beverly | 0421687 | 2017-09-28 10:55:32 -0400 | [diff] [blame] | 4916 | |
| 4917 | // ACTION: DND Settings > Priority only allows > Media toggle |
| 4918 | // SUBTYPE: 0 is off, 1 is on |
| 4919 | // CATEGORY: SETTINGS |
| 4920 | // OS: P |
Felipe Leme | 2fe3ade | 2017-09-28 15:03:36 -0700 | [diff] [blame] | 4921 | ACTION_ZEN_ALLOW_MEDIA = 1227; |
| 4922 | |
| 4923 | // An autofill service explicitly defined which view should commit the autofill context |
| 4924 | // Package: Package of app that is autofilled |
| 4925 | // OS: P |
| 4926 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4927 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | 2fe3ade | 2017-09-28 15:03:36 -0700 | [diff] [blame] | 4928 | AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228; |
| 4929 | |
| 4930 | // The autofill context was commited when the user clicked a view explicitly marked by the |
| 4931 | // service as committing it |
| 4932 | // Package: Package of app that is autofilled |
| 4933 | // OS: P |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4934 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | 2fe3ade | 2017-09-28 15:03:36 -0700 | [diff] [blame] | 4935 | AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229; |
Beverly | 0421687 | 2017-09-28 10:55:32 -0400 | [diff] [blame] | 4936 | |
Malcolm Chen | 4f17b17 | 2017-10-19 13:54:07 -0700 | [diff] [blame] | 4937 | // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling |
| 4938 | // CATEGORY: SETTINGS |
| 4939 | // OS: P |
| 4940 | WIFI_CALLING_FOR_SUB = 1230; |
| 4941 | |
Felipe Leme | 17292d1 | 2017-10-24 14:03:10 -0700 | [diff] [blame] | 4942 | // An autofill service asked to disable autofill for a given application. |
| 4943 | // Package: Package of app that is being disabled for autofill |
Felipe Leme | 17292d1 | 2017-10-24 14:03:10 -0700 | [diff] [blame] | 4944 | // OS: P |
| 4945 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 463b307 | 2018-01-24 13:16:44 -0800 | [diff] [blame] | 4946 | // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4947 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | 17292d1 | 2017-10-24 14:03:10 -0700 | [diff] [blame] | 4948 | AUTOFILL_SERVICE_DISABLED_APP = 1231; |
| 4949 | |
| 4950 | // An autofill service asked to disable autofill for a given activity. |
| 4951 | // Package: Package of app whose activity is being disabled for autofill |
Felipe Leme | 17292d1 | 2017-10-24 14:03:10 -0700 | [diff] [blame] | 4952 | // OS: P |
| 4953 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 4954 | // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill |
Felipe Leme | 463b307 | 2018-01-24 13:16:44 -0800 | [diff] [blame] | 4955 | // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 4956 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | 17292d1 | 2017-10-24 14:03:10 -0700 | [diff] [blame] | 4957 | AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232; |
| 4958 | |
jackqdyulei | de3b7af | 2017-10-24 16:32:58 -0700 | [diff] [blame] | 4959 | // ACTION: Stop an app and turn on background check |
| 4960 | // CATEGORY: SETTINGS |
| 4961 | // OS: P |
| 4962 | ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233; |
| 4963 | |
| 4964 | // FIELD: The action type for each anomaly |
| 4965 | // CATEGORY: SETTINGS |
| 4966 | // OS: P |
| 4967 | FIELD_ANOMALY_ACTION_TYPE = 1234; |
| 4968 | |
| 4969 | // OPEN: Settings -> Battery -> Wakelock anomaly |
| 4970 | // CATEGORY: SETTINGS |
| 4971 | // OS: P |
| 4972 | ANOMALY_TYPE_WAKELOCK = 1235; |
| 4973 | |
| 4974 | // OPEN: Settings -> Battery -> Wakeup alarm anomaly |
| 4975 | // CATEGORY: SETTINGS |
| 4976 | // OS: P |
| 4977 | ANOMALY_TYPE_WAKEUP_ALARM = 1236; |
| 4978 | |
| 4979 | // OPEN: Settings -> Battery -> Unoptimized bt anomaly |
| 4980 | // CATEGORY: SETTINGS |
| 4981 | // OS: P |
| 4982 | ANOMALY_TYPE_UNOPTIMIZED_BT = 1237; |
| 4983 | |
Fan Zhang | a4a0172 | 2017-10-30 17:54:24 -0700 | [diff] [blame] | 4984 | // Open: Settings > Dev options > Oem unlock > lock it > warning dialog. |
| 4985 | // OS: P |
| 4986 | DIALOG_OEM_LOCK_INFO = 1238; |
| 4987 | |
jackqdyulei | 331fafb | 2017-11-01 14:01:24 -0700 | [diff] [blame] | 4988 | // ACTION: Settings > Wi-Fi > Click one network > Auto sign in |
| 4989 | // CATEGORY: SETTINGS |
| 4990 | // OS: P |
| 4991 | ACTION_WIFI_AUTO_SIGN_IN = 1239; |
| 4992 | |
jeffreyhuang | b3bfc4f | 2017-10-27 11:22:45 -0700 | [diff] [blame] | 4993 | // Open: Settings > System > About phone > IMEI |
| 4994 | // CATEGORY: SETTINGS |
| 4995 | // OS: P |
| 4996 | DIALOG_IMEI_INFO = 1240; |
| 4997 | |
Philip P. Moltmann | 8cff8b9 | 2017-10-25 14:32:41 -0700 | [diff] [blame] | 4998 | // In permission action fields tagged like this reference the permission affected |
| 4999 | FIELD_PERMISSION = 1241; |
| 5000 | |
| 5001 | // ACTION: An app requested a permission and we asked to user to approve the request |
| 5002 | // PACKAGE: The package name of the app requesting the permission |
| 5003 | // Tag FIELD_PERMISSION: Name of the permission requested |
| 5004 | ACTION_PERMISSION_REQUESTED = 1242; |
| 5005 | |
| 5006 | // ACTION: An app was granted the a permission. This can happen after a user approved a request |
| 5007 | // or automatically. In the second case there will not be an |
| 5008 | // ACTION_PERMISSION_REQUESTED. |
| 5009 | // PACKAGE: The package name of the app that was granted the permission |
| 5010 | // Tag FIELD_PERMISSION: Name of the permission granted |
| 5011 | ACTION_PERMISSION_GRANTED = 1243; |
| 5012 | |
| 5013 | // ACTION: An app requested the a permission and the request was denied by the user or a device |
| 5014 | // policy |
| 5015 | // PACKAGE: The package name of the app requesting the permission |
| 5016 | // Tag FIELD_PERMISSION: Name of the permission denied |
| 5017 | ACTION_PERMISSION_DENIED = 1244; |
| 5018 | |
| 5019 | // ACTION: A permission was revoked |
| 5020 | // PACKAGE: The package name of the app the permission was revoked for |
| 5021 | // Tag FIELD_PERMISSION: Name of the permission revoked |
| 5022 | ACTION_PERMISSION_REVOKED = 1245; |
| 5023 | |
jeffreyhuang | 594314c | 2017-11-01 10:26:15 -0700 | [diff] [blame] | 5024 | // OPEN: Settings > System > About Phone > Sim status |
| 5025 | // CATEGORY: SETTINGS |
| 5026 | // OS: P |
| 5027 | DIALOG_SIM_STATUS = 1246; |
| 5028 | |
jeffreyhuang | 3bd5978 | 2017-11-02 11:08:28 -0700 | [diff] [blame] | 5029 | // OPEN: Settings > System > About Phone > Android Version |
| 5030 | // CATEGORY: SETTINGS |
| 5031 | // OS: P |
| 5032 | DIALOG_FIRMWARE_VERSION = 1247; |
| 5033 | |
jackqdyulei | 8fe9754 | 2017-11-08 16:23:43 -0800 | [diff] [blame] | 5034 | // OPEN: Settings > Network & internet > Menu > Private DNS |
| 5035 | // CATEGORY: SETTINGS |
| 5036 | // OS: P |
| 5037 | DIALOG_PRIVATE_DNS = 1248; |
| 5038 | |
| 5039 | // ACTION: A private dns mode been selected by user |
| 5040 | // CATEGORY: SETTINGS |
| 5041 | // OS: P |
| 5042 | ACTION_PRIVATE_DNS_MODE = 1249; |
| 5043 | |
Jan Althaus | ae5eb83 | 2017-11-06 12:31:59 +0100 | [diff] [blame] | 5044 | // FIELD: text select start offset in words (as defined by the ICU BreakIterator). |
| 5045 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5046 | // OS: P |
| 5047 | FIELD_SELECTION_RANGE_START = 1250; |
| 5048 | |
| 5049 | // FIELD: text select end offset in words (as defined by the ICU BreakIterator). |
| 5050 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5051 | // OS: P |
| 5052 | FIELD_SELECTION_RANGE_END = 1251; |
| 5053 | |
| 5054 | // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator), |
| 5055 | // stored as two packed 16bit integers. (start in MSBs, end in LSBs) |
| 5056 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5057 | // OS: P |
| 5058 | FIELD_SELECTION_SMART_RANGE_START = 1252; |
| 5059 | |
| 5060 | // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator), |
| 5061 | // stored as two packed 16bit integers. (start in MSBs, end in LSBs) |
| 5062 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5063 | // OS: P |
| 5064 | FIELD_SELECTION_SMART_RANGE_END = 1253; |
| 5065 | |
| 5066 | // FIELD: the entity type of the text currently selected. |
| 5067 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5068 | // OS: P |
| 5069 | FIELD_SELECTION_ENTITY_TYPE = 1254; |
| 5070 | |
| 5071 | // FIELD: the type of widget the selection was made in. |
| 5072 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5073 | // OS: P |
| 5074 | FIELD_SELECTION_WIDGET_TYPE = 1255; |
| 5075 | |
| 5076 | // FIELD: the name of the text classifier model used. |
| 5077 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5078 | // OS: P |
| 5079 | FIELD_TEXTCLASSIFIER_MODEL = 1256; |
| 5080 | |
Beverly | 625442d | 2017-11-03 17:27:02 -0400 | [diff] [blame] | 5081 | // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages |
| 5082 | // CATEGORY: SETTINGS |
| 5083 | // OS: P |
| 5084 | NOTIFICATION_ZEN_MODE_MESSAGES = 1257; |
| 5085 | |
| 5086 | // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls |
| 5087 | // CATEGORY: SETTINGS |
| 5088 | // OS: P |
| 5089 | NOTIFICATION_ZEN_MODE_CALLS = 1258; |
| 5090 | |
| 5091 | // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off |
| 5092 | // CATEGORY: SETTINGS |
| 5093 | // OS: P |
| 5094 | NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259; |
| 5095 | |
| 5096 | // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour) |
| 5097 | // CATEGORY: SETTINGS |
| 5098 | // OS: P |
| 5099 | NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260; |
| 5100 | |
| 5101 | // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM) |
| 5102 | // CATEGORY: SETTINGS |
| 5103 | // OS: P |
| 5104 | NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261; |
| 5105 | |
Jan Althaus | 5d0a14b | 2017-11-15 11:20:58 +0100 | [diff] [blame] | 5106 | // FIELD: the version of the widget the selection was made in. |
| 5107 | // CATEGORY: TEXT_SELECTION_SESSION |
| 5108 | // OS: P |
| 5109 | FIELD_SELECTION_WIDGET_VERSION = 1262; |
| 5110 | |
jackqdyulei | 6319360 | 2017-11-27 13:46:48 -0800 | [diff] [blame] | 5111 | // OPEN: Settings > Battery(version 2) |
| 5112 | // CATEGORY: SETTINGS |
| 5113 | // OS: P |
| 5114 | FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263; |
| 5115 | |
jackqdyulei | 6139eab | 2017-11-29 14:38:32 -0800 | [diff] [blame] | 5116 | // OPEN: Settings > Connected devices > Connection preferences |
| 5117 | // CATEGORY: SETTINGS |
| 5118 | // OS: P |
| 5119 | CONNECTION_DEVICE_ADVANCED = 1264; |
| 5120 | |
Fan Zhang | 5235c05 | 2017-12-05 13:49:35 -0800 | [diff] [blame] | 5121 | // OPEN: Settings > Security > Screen lock gear icon |
| 5122 | // CATEGORY: SETTINGS |
| 5123 | // OS: P |
| 5124 | SCREEN_LOCK_SETTINGS = 1265; |
| 5125 | |
Beverly | bf16c14 | 2017-11-27 16:21:34 -0500 | [diff] [blame] | 5126 | // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon) |
| 5127 | // CATEGORY: SETTINGS |
| 5128 | // OS: P |
| 5129 | NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266; |
Chris Wren | 3824c39 | 2017-11-27 12:54:14 -0500 | [diff] [blame] | 5130 | |
Beverly | bf16c14 | 2017-11-27 16:21:34 -0500 | [diff] [blame] | 5131 | // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK |
| 5132 | // CATEGORY: SETTINGS |
| 5133 | // OS: P |
| 5134 | ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267; |
| 5135 | |
| 5136 | // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW |
| 5137 | // CATEGORY: SETTINGS |
| 5138 | // OS: P |
| 5139 | ACTION_ZEN_TOGGLE_DND_BUTTON = 1268; |
| 5140 | |
| 5141 | // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time |
| 5142 | // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name |
| 5143 | // CATEGORY: SETTINGS |
| 5144 | // OS: P |
| 5145 | NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269; |
| 5146 | |
| 5147 | // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule |
| 5148 | // CATEGORY: SETTINGS |
| 5149 | // OS: P |
| 5150 | NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270; |
| 5151 | |
Felipe Leme | 5e04720 | 2017-12-05 16:30:06 -0800 | [diff] [blame] | 5152 | // Tag of a field for the number of ids in an autofill field classification request. |
| 5153 | FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271; |
| 5154 | |
| 5155 | // An autofill service updated its user data |
| 5156 | // Package: Package of the autofill service that updated the user data |
Felipe Leme | 6ef61b8 | 2018-02-15 16:26:02 -0800 | [diff] [blame] | 5157 | // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset) |
| 5158 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
Felipe Leme | 5e04720 | 2017-12-05 16:30:06 -0800 | [diff] [blame] | 5159 | // OS: P |
| 5160 | AUTOFILL_USERDATA_UPDATED = 1272; |
| 5161 | |
| 5162 | // Some data entered by the user matched the field classification requested by the service. |
| 5163 | // Package: Package of app that is autofilled |
| 5164 | // Counter: number of matches found |
| 5165 | // OS: P |
| 5166 | // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request |
| 5167 | // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100 |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 5168 | // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. |
Felipe Leme | 5e04720 | 2017-12-05 16:30:06 -0800 | [diff] [blame] | 5169 | AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273; |
| 5170 | |
| 5171 | // Tag used to report autofill field classification scores |
| 5172 | FIELD_AUTOFILL_MATCH_SCORE = 1274; |
| 5173 | |
Jerry Zhang | 18be8db | 2017-12-15 15:24:41 -0800 | [diff] [blame] | 5174 | // ACTION: Usb config has been changed to charging |
| 5175 | // CATEGORY: SETTINGS |
| 5176 | // OS: P |
| 5177 | ACTION_USB_CONFIG_CHARGING = 1275; |
| 5178 | |
| 5179 | // ACTION: Usb config has been changed to mtp (file transfer) |
| 5180 | // CATEGORY: SETTINGS |
| 5181 | // OS: P |
| 5182 | ACTION_USB_CONFIG_MTP = 1276; |
| 5183 | |
| 5184 | // ACTION: Usb config has been changed to ptp (photo transfer) |
| 5185 | // CATEGORY: SETTINGS |
| 5186 | // OS: P |
| 5187 | ACTION_USB_CONFIG_PTP = 1277; |
| 5188 | |
| 5189 | // ACTION: Usb config has been changed to rndis (usb tethering) |
| 5190 | // CATEGORY: SETTINGS |
| 5191 | // OS: P |
| 5192 | ACTION_USB_CONFIG_RNDIS = 1278; |
| 5193 | |
| 5194 | // ACTION: Usb config has been changed to midi |
| 5195 | // CATEGORY: SETTINGS |
| 5196 | // OS: P |
| 5197 | ACTION_USB_CONFIG_MIDI = 1279; |
| 5198 | |
| 5199 | // ACTION: Usb config has been changed to accessory |
| 5200 | // CATEGORY: SETTINGS |
| 5201 | // OS: P |
| 5202 | ACTION_USB_CONFIG_ACCESSORY = 1280; |
| 5203 | |
jackqdyulei | e04138d | 2018-01-08 17:51:57 -0800 | [diff] [blame] | 5204 | // OPEN: Settings > Battery > Smart Battery |
| 5205 | // CATEGORY: SETTINGS |
| 5206 | // OS: P |
| 5207 | FUELGAUGE_SMART_BATTERY = 1281; |
| 5208 | |
Alison Cichowlas | a2cd19e | 2017-12-06 10:51:21 -0500 | [diff] [blame] | 5209 | // ACTION: User tapped Screenshot in the power menu. |
| 5210 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 5211 | // OS: P |
| 5212 | ACTION_SCREENSHOT_POWER_MENU = 1282; |
| 5213 | |
Felipe Leme | 3e09911 | 2018-01-18 12:57:45 -0800 | [diff] [blame] | 5214 | // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access |
Felipe Leme | 12e15cc | 2018-01-12 09:14:16 -0800 | [diff] [blame] | 5215 | // CATEGORY: SETTINGS |
| 5216 | // OS: P |
Felipe Leme | 3e09911 | 2018-01-18 12:57:45 -0800 | [diff] [blame] | 5217 | DIRECTORY_ACCESS = 1283; |
Felipe Leme | 12e15cc | 2018-01-12 09:14:16 -0800 | [diff] [blame] | 5218 | |
Felipe Leme | 3e09911 | 2018-01-18 12:57:45 -0800 | [diff] [blame] | 5219 | // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package |
Felipe Leme | 12e15cc | 2018-01-12 09:14:16 -0800 | [diff] [blame] | 5220 | // CATEGORY: SETTINGS |
| 5221 | // OS: P |
Felipe Leme | 3e09911 | 2018-01-18 12:57:45 -0800 | [diff] [blame] | 5222 | APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284; |
Alison Cichowlas | a2cd19e | 2017-12-06 10:51:21 -0500 | [diff] [blame] | 5223 | |
jackqdyulei | d982124 | 2018-01-09 17:42:52 -0800 | [diff] [blame] | 5224 | // OPEN: Settings > Battery > Smart Battery > Restricted apps |
| 5225 | // CATEGORY: SETTINGS |
| 5226 | // OS: P |
| 5227 | FUELGAUGE_RESTRICTED_APP_DETAILS = 1285; |
| 5228 | |
Beverly | 92c2568 | 2018-01-22 09:27:19 -0500 | [diff] [blame] | 5229 | // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now |
| 5230 | // CATEGORY: SETTINGS |
| 5231 | // OS: P |
| 5232 | NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286; |
| 5233 | |
Mike Digman | c94759d | 2018-01-23 11:01:21 -0800 | [diff] [blame] | 5234 | // ACTION: Rotate suggestion accepted in rotation locked mode |
| 5235 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 5236 | // OS: P |
| 5237 | ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287; |
| 5238 | |
| 5239 | // OPEN: Rotation suggestion shown in rotation locked mode |
| 5240 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 5241 | // OS: P |
| 5242 | ROTATION_SUGGESTION_SHOWN = 1288; |
| 5243 | |
Felipe Leme | 87b7f8f | 2018-01-30 18:39:28 +0000 | [diff] [blame] | 5244 | // An autofill service was bound using an unofficial(but still supported) permission. |
| 5245 | // Package: Package of the autofill service |
| 5246 | // OS: P |
| 5247 | AUTOFILL_INVALID_PERMISSION = 1289; |
| 5248 | |
Amin Shaikh | 4bd8e05 | 2018-01-29 09:52:15 -0500 | [diff] [blame] | 5249 | // OPEN: QS Alarm tile shown |
| 5250 | // ACTION: QS Alarm tile tapped |
| 5251 | // SUBTYPE: 0 is off, 1 is on |
| 5252 | // CATEGORY: QUICK_SETTINGS |
| 5253 | // OS: P |
| 5254 | QS_ALARM = 1290; |
| 5255 | |
Jerry Zhang | 7914797 | 2018-01-31 16:04:06 -0800 | [diff] [blame] | 5256 | // OPEN: Settings->Connected Devices->USB->(click on details link) |
| 5257 | // CATEGORY: SETTINGS |
| 5258 | // OS: P |
| 5259 | USB_DEVICE_DETAILS = 1291; |
| 5260 | |
Michael Wright | 98bdc51 | 2018-01-26 19:15:57 +0000 | [diff] [blame] | 5261 | // OPEN: Settings > Accessibility > Vibration |
| 5262 | // CATEGORY: SETTINGS |
| 5263 | // OS: P |
| 5264 | ACCESSIBILITY_VIBRATION = 1292; |
| 5265 | |
| 5266 | // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration |
| 5267 | // CATEGORY: SETTINGS |
| 5268 | // OS: P |
| 5269 | ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293; |
| 5270 | |
| 5271 | // OPEN: Settings > Accessibility > Vibration > Touch vibration |
| 5272 | // CATEGORY: SETTINGS |
| 5273 | // OS: P |
| 5274 | ACCESSIBILITY_VIBRATION_TOUCH = 1294; |
| 5275 | |
Julia Reynolds | 8b46ef2 | 2018-02-06 14:47:30 -0500 | [diff] [blame] | 5276 | // OPEN: Volume panel > output chooser dialog |
| 5277 | // OS: P |
| 5278 | OUTPUT_CHOOSER = 1295; |
| 5279 | |
| 5280 | // Action: Volume panel > output chooser dialog > tap on device |
| 5281 | // OS: P |
| 5282 | ACTION_OUTPUT_CHOOSER_CONNECT = 1296; |
| 5283 | |
| 5284 | // Action: Volume panel > output chooser dialog > tap on X next to connected device |
| 5285 | // OS: P |
| 5286 | ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297; |
| 5287 | |
Leif Hendrik Wilden | 1e462a0 | 2018-02-12 13:50:33 -0800 | [diff] [blame] | 5288 | // OPEN: TV Settings > Home theater control |
| 5289 | // OS: P |
| 5290 | SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298; |
| 5291 | |
| 5292 | // OPEN: TV Settings > TV Inputs (Inputs & Devices) |
| 5293 | // OS: P |
| 5294 | SETTINGS_TV_INPUTS_CATEGORY = 1299; |
| 5295 | |
| 5296 | // OPEN: TV Settings > Device |
| 5297 | // OS: P |
| 5298 | SETTINGS_TV_DEVICE_CATEGORY = 1300; |
| 5299 | |
| 5300 | // OPEN: TV Settings > Network > Proxy settings |
| 5301 | // OS: P |
| 5302 | DIALOG_TV_NETWORK_PROXY = 1301; |
| 5303 | |
Makoto Onuki | 698f7a0 | 2018-02-13 15:02:23 -0800 | [diff] [blame] | 5304 | // Events for battery saver turning on/off and/or the interactive state changes. |
| 5305 | // OS: P |
| 5306 | BATTERY_SAVER = 1302; |
| 5307 | |
| 5308 | // Device interactive state -- i.e. the screen ON (=1) or OFF (=1) |
| 5309 | // OS: P |
| 5310 | FIELD_INTERACTIVE = 1303; |
| 5311 | |
| 5312 | // Time spent in milliseconds in the current mode. |
| 5313 | // OS: P |
| 5314 | FIELD_DURATION_MILLIS = 1304; |
| 5315 | |
| 5316 | // Battery level in uA (0 - ~3,000,000 depending on device) when the current "mode" started. |
| 5317 | // OS: P |
| 5318 | FIELD_START_BATTERY_UA = 1305; |
| 5319 | |
| 5320 | // Battery level in uA (0 - ~3,000,000 depending on device) when this event was created. |
| 5321 | // OS: P |
| 5322 | FIELD_END_BATTERY_UA = 1306; |
| 5323 | |
| 5324 | // Battery level in % (0-100) when the current "mode" started. |
| 5325 | // OS: P |
| 5326 | FIELD_START_BATTERY_PERCENT = 1307; |
| 5327 | |
| 5328 | // Battery level in % (0-100) when this event was created. |
| 5329 | // OS: P |
| 5330 | FIELD_END_BATTERY_PERCENT = 1308; |
| 5331 | |
Christine Franks | e257e45 | 2018-01-18 11:06:54 -0800 | [diff] [blame] | 5332 | // ACTION: Settings > Display > Night Light |
| 5333 | // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value |
| 5334 | // CATEGORY: SETTINGS |
| 5335 | // OS: P |
| 5336 | ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309; |
| 5337 | |
| 5338 | // ACTION: Settings > Display > Night Light |
| 5339 | // CATEGORY: SETTINGS |
| 5340 | // SUBTYPE: 0 is starting time, 1 is ending time |
| 5341 | // OS: P |
| 5342 | ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310; |
| 5343 | |
| 5344 | // FIELD: Current mode corresponding to a QS tile |
| 5345 | // CATEGORY: QUICK SETTINGS |
| 5346 | // OS: P |
| 5347 | FIELD_QS_MODE = 1311; |
| 5348 | |
Calin Juravle | 759fbda | 2018-02-20 19:52:30 +0000 | [diff] [blame] | 5349 | |
Jerry Zhang | 92306d8 | 2018-02-12 18:12:41 -0800 | [diff] [blame] | 5350 | // OPEN: Settings->Developer Options->Default USB |
| 5351 | // CATEGORY: SETTINGS |
| 5352 | // OS: P |
| 5353 | USB_DEFAULT = 1312; |
| 5354 | |
Jan Althaus | 31efdc3 | 2018-02-19 22:23:13 +0100 | [diff] [blame] | 5355 | // CATEGORY: The category for all actions related to TextClassifier generateLinks. |
| 5356 | // OS: P |
| 5357 | TEXT_CLASSIFIER_GENERATE_LINKS = 1313; |
| 5358 | |
| 5359 | // FIELD: milliseconds spent generating links. |
| 5360 | // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS |
| 5361 | // OS: P |
| 5362 | FIELD_LINKIFY_LATENCY = 1314; |
| 5363 | |
| 5364 | // FIELD: length of the input text in characters. |
| 5365 | // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS |
| 5366 | // OS: P |
| 5367 | FIELD_LINKIFY_TEXT_LENGTH = 1315; |
| 5368 | |
| 5369 | // FIELD: number of links detected. |
| 5370 | // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS |
| 5371 | // OS: P |
| 5372 | FIELD_LINKIFY_NUM_LINKS = 1316; |
| 5373 | |
| 5374 | // FIELD: length of all links in characters. |
| 5375 | // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS |
| 5376 | // OS: P |
| 5377 | FIELD_LINKIFY_LINK_LENGTH = 1317; |
| 5378 | |
| 5379 | // FIELD: the type of entity the stats are for. |
| 5380 | // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS |
| 5381 | // OS: P |
| 5382 | FIELD_LINKIFY_ENTITY_TYPE = 1318; |
| 5383 | |
| 5384 | // FIELD: a random uid for a single call to generateLinks |
| 5385 | // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS |
| 5386 | // OS: P |
| 5387 | FIELD_LINKIFY_CALL_ID = 1319; |
| 5388 | |
Calin Juravle | 759fbda | 2018-02-20 19:52:30 +0000 | [diff] [blame] | 5389 | // FIELD: The compiler filter used when when optimizing the package. |
| 5390 | // Logged together with app transition events. |
| 5391 | // OS: P |
| 5392 | PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320; |
| 5393 | |
| 5394 | // FIELD: The reason for optimizing the package. |
| 5395 | // Logged together with app transition events. |
| 5396 | // OS: P |
| 5397 | PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321; |
| 5398 | |
Emilian Peev | 6bf0a55 | 2018-02-10 02:15:49 +0000 | [diff] [blame] | 5399 | // FIELD: The camera API level used. |
| 5400 | // CATEGORY: CAMERA |
| 5401 | // OS: P |
| 5402 | FIELD_CAMERA_API_LEVEL = 1322; |
| 5403 | |
jackqdyulei | 73e6b34 | 2018-02-26 14:44:50 -0800 | [diff] [blame] | 5404 | // OPEN: Settings > Battery > Battery tip > Battery tip Dialog |
| 5405 | // CATEGORY: SETTINGS |
| 5406 | // OS: P |
| 5407 | FUELGAUGE_BATTERY_TIP_DIALOG = 1323; |
| 5408 | |
jackqdyulei | bb60ea2 | 2018-02-26 17:18:12 -0800 | [diff] [blame] | 5409 | // OPEN: Settings > Battery > Battery tip |
| 5410 | // CATEGORY: SETTINGS |
| 5411 | // OS: P |
| 5412 | ACTION_BATTERY_TIP_SHOWN = 1324; |
| 5413 | |
Maggie | b9d7632 | 2018-02-16 18:00:30 -0800 | [diff] [blame] | 5414 | // OPEN: Settings > Security & Location > Location > See all |
| 5415 | // CATEGORY: SETTINGS |
| 5416 | // OS: P |
| 5417 | RECENT_LOCATION_REQUESTS_ALL = 1325; |
| 5418 | |
Evan Laird | 404a85c | 2018-02-28 15:31:29 -0500 | [diff] [blame] | 5419 | // FIELD: The x-location of a swipe gesture, conveyed as percent of total width |
| 5420 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 5421 | // OS: P |
| 5422 | FIELD_GESTURE_X_PERCENT = 1326; |
| 5423 | |
| 5424 | // FIELD: The y-location of a swipe gesture, conveyed as percent of total width |
| 5425 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 5426 | // OS: P |
| 5427 | FIELD_GESTURE_Y_PERCENT = 1327; |
| 5428 | |
| 5429 | // ACTION: Expand the notification panel while unlocked |
| 5430 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 5431 | // OS: P |
| 5432 | ACTION_PANEL_VIEW_EXPAND = 1328; |
| 5433 | |
Evan Laird | 404a85c | 2018-02-28 15:31:29 -0500 | [diff] [blame] | 5434 | // FIELD: Rotation of the device |
| 5435 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 5436 | // OS: P |
| 5437 | FIELD_DEVICE_ROTATION = 1329; |
| 5438 | |
Leif Hendrik Wilden | affcc6f | 2018-03-01 11:46:32 -0800 | [diff] [blame] | 5439 | // OPEN: TV Settings > Inputs > Input Options |
| 5440 | // CATEGORY: SETTINGS |
| 5441 | // OS: P |
| 5442 | SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330; |
| 5443 | |
| 5444 | // OPEN: TV Settings > Network & Internet > Add known WIFI network |
| 5445 | // CATEGORY: SETTINGS |
| 5446 | // OS: P |
| 5447 | SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331; |
| 5448 | |
Julia Reynolds | bce6d98 | 2018-03-02 14:53:15 -0500 | [diff] [blame] | 5449 | // ACTION: DND Settings > What to block > full screen intents |
| 5450 | // SUBTYPE: false is allowed, true is blocked |
| 5451 | // CATEGORY: SETTINGS |
| 5452 | // OS: 6.0 |
| 5453 | ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332; |
| 5454 | |
| 5455 | // ACTION: DND Settings > What to block |
| 5456 | // SUBTYPE: false is allowed, true is blocked |
| 5457 | // OS: P |
| 5458 | ACTION_ZEN_BLOCK_LIGHT = 1333; |
| 5459 | |
| 5460 | // ACTION: DND Settings > What to block |
| 5461 | // SUBTYPE: false is allowed, true is blocked |
| 5462 | // OS: P |
| 5463 | ACTION_ZEN_BLOCK_PEEK = 1334; |
| 5464 | |
| 5465 | // ACTION: DND Settings > What to block |
| 5466 | // SUBTYPE: false is allowed, true is blocked |
| 5467 | // OS: P |
| 5468 | ACTION_ZEN_BLOCK_STATUS = 1335; |
| 5469 | |
| 5470 | // ACTION: DND Settings > What to block |
| 5471 | // SUBTYPE: false is allowed, true is blocked |
| 5472 | // OS: P |
| 5473 | ACTION_ZEN_BLOCK_BADGE = 1336; |
| 5474 | |
| 5475 | // ACTION: DND Settings > What to block |
| 5476 | // SUBTYPE: false is allowed, true is blocked |
| 5477 | // OS: P |
| 5478 | ACTION_ZEN_BLOCK_AMBIENT = 1337; |
| 5479 | |
| 5480 | // ACTION: DND Settings > What to block |
| 5481 | // SUBTYPE: false is allowed, true is blocked |
| 5482 | // OS: P |
| 5483 | ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338; |
| 5484 | |
| 5485 | // OPEN: DND Settings > What to block |
| 5486 | // OS: P |
| 5487 | ZEN_WHAT_TO_BLOCK = 1339; |
| 5488 | |
Beverly | 8fe33ba | 2018-03-05 14:32:35 -0500 | [diff] [blame] | 5489 | // ACTION: DND Settings > Priority only allows > System toggle |
| 5490 | // SUBTYPE: 0 is off, 1 is on |
| 5491 | // CATEGORY: SETTINGS |
| 5492 | // OS: P |
| 5493 | ACTION_ZEN_ALLOW_SYSTEM = 1340; |
| 5494 | |
| 5495 | // OPEN: Settings > Sounds > Do Not Disturb > Duration |
| 5496 | // CATEGORY: SETTINGS |
| 5497 | // OS: P |
| 5498 | NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341; |
| 5499 | |
| 5500 | // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour) |
| 5501 | // CATEGORY: SETTINGS |
| 5502 | // OS: P |
| 5503 | NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342; |
| 5504 | |
| 5505 | // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off |
| 5506 | // CATEGORY: SETTINGS |
| 5507 | // OS: P |
| 5508 | NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343; |
| 5509 | |
| 5510 | // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time |
| 5511 | // CATEGORY: SETTINGS |
| 5512 | // OS: P |
| 5513 | NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344; |
| 5514 | |
Julia Reynolds | 8dff186 | 2018-03-06 14:20:40 -0500 | [diff] [blame] | 5515 | // Notification Guts, active app ops variant |
| 5516 | // OS: P |
| 5517 | APP_OPS_GUTS = 1345; |
| 5518 | |
| 5519 | // ACTION: Notification Guts, active app ops variant > Settings button |
| 5520 | // OS: P |
| 5521 | ACTION_OPS_GUTS_SETTINGS = 1346; |
| 5522 | |
Lei Yu | 5674d2d | 2018-03-08 10:19:43 -0800 | [diff] [blame] | 5523 | // ACTION: Settings > Battery settings > Battery tip > App restriction tip |
| 5524 | // OS: P |
| 5525 | ACTION_APP_RESTRICTION_TIP = 1347; |
| 5526 | |
| 5527 | // ACTION: Settings > Battery settings > Battery tip > High usage tip |
| 5528 | // OS: P |
| 5529 | ACTION_HIGH_USAGE_TIP = 1348; |
| 5530 | |
Lei Yu | e93e560 | 2018-03-08 12:15:38 -0800 | [diff] [blame] | 5531 | // ACTION: Settings > Battery settings > Battery tip > Summary tip |
| 5532 | // OS: P |
| 5533 | ACTION_SUMMARY_TIP = 1349; |
| 5534 | |
| 5535 | // ACTION: Settings > Battery settings > Battery tip > Smart battery tip |
| 5536 | // OS: P |
| 5537 | ACTION_SMART_BATTERY_TIP = 1350; |
| 5538 | |
| 5539 | // ACTION: Settings > Battery settings > Battery tip > Early warning tip |
| 5540 | // OS: P |
| 5541 | ACTION_EARLY_WARNING_TIP = 1351; |
| 5542 | |
| 5543 | // ACTION: Settings > Battery settings > Battery tip > Low battery tip |
| 5544 | // OS: P |
| 5545 | ACTION_LOW_BATTERY_TIP = 1352; |
| 5546 | |
| 5547 | // ACTION: Settings > Battery settings > Battery tip > App restriction list shown |
| 5548 | // OS: P |
| 5549 | ACTION_APP_RESTRICTION_TIP_LIST = 1353; |
| 5550 | |
| 5551 | // ACTION: Settings > Battery settings > Battery tip > High usage list shown |
| 5552 | // OS: P |
| 5553 | ACTION_HIGH_USAGE_TIP_LIST = 1354; |
| 5554 | |
Victor Chang | 76817b8 | 2018-03-09 17:22:52 +0000 | [diff] [blame] | 5555 | // OPEN: Settings > Date & time > Select time zone -> Region |
| 5556 | // CATEGORY: SETTINGS |
| 5557 | // OS: P |
| 5558 | SETTINGS_ZONE_PICKER_REGION = 1355; |
| 5559 | |
| 5560 | // OPEN: Settings > Date & time > Select time zone -> Time Zone |
| 5561 | // CATEGORY: SETTINGS |
| 5562 | // OS: P |
| 5563 | SETTINGS_ZONE_PICKER_TIME_ZONE = 1356; |
| 5564 | |
| 5565 | // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset |
| 5566 | // CATEGORY: SETTINGS |
| 5567 | // OS: P |
| 5568 | SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357; |
| 5569 | |
Julia Reynolds | 72cab0e | 2018-03-13 10:58:43 -0400 | [diff] [blame] | 5570 | // Action: notification shade > manage notifications |
| 5571 | // OS: P |
| 5572 | ACTION_MANAGE_NOTIFICATIONS = 1358; |
| 5573 | |
Chris Wren | aa571c6 | 2018-03-14 12:16:04 -0400 | [diff] [blame] | 5574 | // This value should never appear in log outputs - it is reserved for |
| 5575 | // internal platform metrics use. |
| 5576 | RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359; |
| 5577 | |
Julia Reynolds | b998c8e | 2018-03-16 09:09:45 -0400 | [diff] [blame] | 5578 | // OPEN: Settings > Gestures > Prevent Ringing |
| 5579 | // OS: P |
| 5580 | SETTINGS_PREVENT_RINGING = 1360; |
| 5581 | |
Lei Yu | e92285a | 2018-03-12 11:28:40 -0700 | [diff] [blame] | 5582 | // ACTION: Settings > Battery settings > Battery tip > Open app restriction page |
| 5583 | // CATEGORY: SETTINGS |
| 5584 | // OS: P |
| 5585 | ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361; |
| 5586 | |
| 5587 | // ACTION: Settings > Battery settings > Battery tip > Restrict app |
| 5588 | // CATEGORY: SETTINGS |
| 5589 | // OS: P |
| 5590 | ACTION_TIP_RESTRICT_APP = 1362; |
| 5591 | |
| 5592 | // ACTION: Settings > Battery settings > Battery tip > Unrestrict app |
| 5593 | // CATEGORY: SETTINGS |
| 5594 | // OS: P |
| 5595 | ACTION_TIP_UNRESTRICT_APP = 1363; |
| 5596 | |
| 5597 | // ACTION: Settings > Battery settings > Battery tip > Open smart battery page |
| 5598 | // CATEGORY: SETTINGS |
| 5599 | // OS: P |
| 5600 | ACTION_TIP_OPEN_SMART_BATTERY = 1364; |
| 5601 | |
| 5602 | // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver |
| 5603 | // CATEGORY: SETTINGS |
| 5604 | // OS: P |
| 5605 | ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365; |
| 5606 | |
| 5607 | // FIELD: type of anomaly in settings app |
| 5608 | // CATEGORY: SETTINGS |
| 5609 | // OS: P |
| 5610 | FIELD_ANOMALY_TYPE = 1366; |
| 5611 | |
Lei Yu | 4f70477 | 2018-03-20 10:51:58 -0700 | [diff] [blame] | 5612 | // ACTION: Settings > Anomaly receiver > Anomaly received |
| 5613 | // CATEGORY: SETTINGS |
| 5614 | // OS: P |
| 5615 | ACTION_ANOMALY_TRIGGERED = 1367; |
| 5616 | |
Fan Zhang | a85b487 | 2018-03-26 16:52:53 -0700 | [diff] [blame] | 5617 | // ACTION: Settings > Condition > Device muted |
| 5618 | // CATEGORY: SETTINGS |
| 5619 | // OS: P |
| 5620 | SETTINGS_CONDITION_DEVICE_MUTED = 1368; |
| 5621 | |
| 5622 | // ACTION: Settings > Condition > Device vibrate |
| 5623 | // CATEGORY: SETTINGS |
| 5624 | // OS: P |
| 5625 | SETTINGS_CONDITION_DEVICE_VIBRATE = 1369; |
| 5626 | |
hughchen | 226196b | 2018-03-27 12:04:59 +0800 | [diff] [blame] | 5627 | // OPEN: Settings > Connected devices > previously connected devices |
| 5628 | // CATEGORY: SETTINGS |
| 5629 | // OS: P |
| 5630 | PREVIOUSLY_CONNECTED_DEVICES = 1370; |
Fan Zhang | a85b487 | 2018-03-26 16:52:53 -0700 | [diff] [blame] | 5631 | |
Fan Zhang | 5b4c2b1 | 2018-04-02 15:02:18 -0700 | [diff] [blame] | 5632 | // ACTION: A Settings Slice is requested |
| 5633 | // CATEGORY: SETTINGS |
| 5634 | // OS: P |
| 5635 | ACTION_SETTINGS_SLICE_REQUESTED = 1371; |
| 5636 | |
| 5637 | // ACTION: A Settings Slice is updated with new value |
| 5638 | // CATEGORY: SETTINGS |
| 5639 | // OS: P |
| 5640 | ACTION_SETTINGS_SLICE_CHANGED = 1372; |
| 5641 | |
Salvador Martinez | c29c8c0 | 2018-04-04 14:45:42 -0700 | [diff] [blame] | 5642 | // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically |
| 5643 | // note: Wifi Scanning must be off for this dialog to show |
| 5644 | // CATEGORY: SETTINGS |
| 5645 | // OS: P |
| 5646 | WIFI_SCANNING_NEEDED_DIALOG = 1373; |
| 5647 | |
Mehdi Alizadeh | 1264d88 | 2018-04-03 18:38:34 -0700 | [diff] [blame] | 5648 | // OPEN: Settings > System > Gestures > Swipe up gesture |
| 5649 | // CATEGORY: SETTINGS |
| 5650 | // OS: P |
| 5651 | SETTINGS_GESTURE_SWIPE_UP = 1374; |
| 5652 | |
Jeff Sharkey | 4627071 | 2018-04-02 09:53:21 -0600 | [diff] [blame] | 5653 | // OPEN: Settings > Storage > Dialog to format a storage volume |
| 5654 | // CATEGORY: SETTINGS |
| 5655 | // OS: P |
| 5656 | DIALOG_VOLUME_FORMAT = 1375; |
| 5657 | |
Julia Reynolds | 8aca3e0 | 2018-04-09 13:57:21 -0400 | [diff] [blame] | 5658 | // OPEN: DND onboarding activity > screen on checkbox |
| 5659 | // CATEGORY: SETTINGS |
| 5660 | // OS: P |
| 5661 | ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376; |
| 5662 | |
| 5663 | // OPEN: DND onboarding activity > screen off checkbox |
| 5664 | // CATEGORY: SETTINGS |
| 5665 | // OS: P |
| 5666 | ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377; |
| 5667 | |
| 5668 | // OPEN: DND onboarding activity > Ok button |
| 5669 | // CATEGORY: SETTINGS |
| 5670 | // OS: P |
| 5671 | ACTION_ZEN_ONBOARDING_OK = 1378; |
| 5672 | |
| 5673 | // OPEN: DND onboarding activity > Settings link |
| 5674 | // CATEGORY: SETTINGS |
| 5675 | // OS: P |
| 5676 | ACTION_ZEN_ONBOARDING_SETTINGS = 1379; |
| 5677 | |
| 5678 | // OPEN: DND onboarding activity |
| 5679 | // CATEGORY: SETTINGS |
| 5680 | // OS: P |
| 5681 | SETTINGS_ZEN_ONBOARDING = 1380; |
| 5682 | |
Fan Zhang | d2ed821 | 2018-04-10 12:57:56 -0700 | [diff] [blame] | 5683 | // OPEN: Settings > Display > Auto brightness |
| 5684 | // CATEGORY: SETTINGS |
| 5685 | // OS: P |
| 5686 | SETTINGS_AUTO_BRIGHTNESS = 1381; |
| 5687 | |
Kenny Guy | 2399110 | 2018-04-05 21:18:38 +0100 | [diff] [blame] | 5688 | // OPEN: Smart replies in a notification seen at least once |
| 5689 | // CATEGORY: NOTIFICATION |
| 5690 | // PACKAGE: App that posted the notification |
| 5691 | // SUBTYPE: Number of smart replies. |
| 5692 | // OS: P |
| 5693 | SMART_REPLY_VISIBLE = 1382; |
| 5694 | |
| 5695 | // ACTION: Smart reply in a notification clicked. |
| 5696 | // CATEGORY: NOTIFICATION |
| 5697 | // PACKAGE: App that posted the notification |
| 5698 | // SUBTYPE: Index of smart reply clicked. |
| 5699 | // OS: P |
| 5700 | SMART_REPLY_ACTION = 1383; |
| 5701 | |
| 5702 | // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies. |
| 5703 | // OS: P |
| 5704 | NOTIFICATION_SMART_REPLY_COUNT = 1384; |
| 5705 | |
Julia Reynolds | 5ba8dda | 2018-04-10 16:07:57 -0400 | [diff] [blame] | 5706 | // Volume dialog > ringer toggle |
| 5707 | // OS: P |
| 5708 | ACTION_VOLUME_RINGER_TOGGLE = 1385; |
| 5709 | |
| 5710 | // Volume dialog > settings button |
| 5711 | // OS: P |
| 5712 | ACTION_VOLUME_SETTINGS = 1386; |
| 5713 | |
Lei Yu | fc59a57 | 2018-04-10 10:52:08 -0700 | [diff] [blame] | 5714 | // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings |
| 5715 | // CATEGORY: SETTINGS |
| 5716 | // OS: P |
| 5717 | ACTION_ANOMALY_IGNORED = 1387; |
Julia Reynolds | 5ba8dda | 2018-04-10 16:07:57 -0400 | [diff] [blame] | 5718 | |
Lei Yu | 97a1321 | 2018-04-11 15:45:31 -0700 | [diff] [blame] | 5719 | // ACTION: Settings > Battery settings > Battery tip > Open battery saver page |
| 5720 | // CATEGORY: SETTINGS |
| 5721 | // OS: P |
| 5722 | ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388; |
| 5723 | |
| 5724 | // FIELD: the version code of an app |
| 5725 | // CATEGORY: SETTINGS |
| 5726 | // OS: P |
| 5727 | FIELD_APP_VERSION_CODE = 1389; |
| 5728 | |
Salvador Martinez | 7a9564f | 2018-04-04 14:42:59 -0700 | [diff] [blame] | 5729 | // OPEN: Settings > Connected Devices > Bluetooth |
| 5730 | // CATEGORY: SETTINGS |
| 5731 | // OS: P |
| 5732 | BLUETOOTH_FRAGMENT = 1390; |
| 5733 | |
Mathew Inwood | ac1c19a | 2018-04-12 12:17:57 +0100 | [diff] [blame] | 5734 | // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when |
| 5735 | // an app uses a hidden API. |
| 5736 | ACTION_HIDDEN_API_ACCESSED = 1391; |
| 5737 | |
| 5738 | // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API |
| 5739 | // access; see enum HiddenApiAccessMethod |
| 5740 | // OS: P |
| 5741 | FIELD_HIDDEN_API_ACCESS_METHOD = 1392; |
| 5742 | |
| 5743 | // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was |
| 5744 | // denied to the API. |
| 5745 | // OS: P |
| 5746 | FIELD_HIDDEN_API_ACCESS_DENIED = 1393; |
| 5747 | |
| 5748 | // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden |
| 5749 | // API that was accessed. |
| 5750 | // OS: P |
| 5751 | FIELD_HIDDEN_API_SIGNATURE = 1394; |
| 5752 | |
Dieter Hsu | d39f0d5 | 2018-04-14 02:08:30 +0800 | [diff] [blame] | 5753 | // This value should never appear in log outputs - it is reserved for |
| 5754 | // internal platform metrics use. |
| 5755 | NOTIFICATION_SHADE_COUNT = 1395; |
| 5756 | |
Julia Reynolds | 5da746a | 2018-04-23 09:41:21 -0400 | [diff] [blame] | 5757 | // ACTION: DND Settings > What to block |
| 5758 | // OS: P |
| 5759 | ACTION_ZEN_SOUND_ONLY = 1396; |
| 5760 | |
| 5761 | // ACTION: DND Settings > Notifications |
| 5762 | // OS: P |
| 5763 | ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397; |
| 5764 | |
| 5765 | // ACTION: DND Settings > Notifications |
| 5766 | // OS: P |
| 5767 | ACTION_ZEN_SHOW_CUSTOM = 1398; |
| 5768 | |
| 5769 | // ACTION: DND Settings > Notifications |
| 5770 | // OS: P |
| 5771 | ACTION_ZEN_CUSTOM = 1399; |
| 5772 | |
| 5773 | // Screen: DND Settings > Notifications |
| 5774 | // OS: P |
| 5775 | SETTINGS_ZEN_NOTIFICATIONS = 1400; |
| 5776 | |
Chris Wren | d63dffd | 2018-04-19 11:12:46 -0400 | [diff] [blame] | 5777 | // An event category for slices. |
| 5778 | // OPEN: Slice became visible. |
| 5779 | // CLOSE: Slice became invisible. |
| 5780 | // ACTION: Slice was tapped. |
| 5781 | SLICE = 1401; |
| 5782 | |
| 5783 | // The authority part of the slice URI |
| 5784 | FIELD_SLICE_AUTHORITY = 1402; |
| 5785 | |
| 5786 | // The path part of the slice URI |
| 5787 | FIELD_SLICE_PATH = 1403; |
| 5788 | |
| 5789 | // The authority part of the subslice URI |
| 5790 | FIELD_SUBSLICE_AUTHORITY = 1404; |
| 5791 | |
| 5792 | // The path part of the subslice URI |
| 5793 | FIELD_SUBSLICE_PATH = 1405; |
| 5794 | |
Julia Reynolds | 2e6c19c | 2018-05-01 09:04:21 -0400 | [diff] [blame] | 5795 | // OPEN: DND onboarding activity > don't update button |
| 5796 | // CATEGORY: SETTINGS |
| 5797 | // OS: P |
| 5798 | ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406; |
| 5799 | |
Jeff Sharkey | adfc9b6 | 2018-05-02 16:14:43 -0600 | [diff] [blame] | 5800 | // ACTION: Storage initialization wizard initialization choice of external/portable |
| 5801 | // CATEGORY: SETTINGS |
| 5802 | // OS: P |
| 5803 | ACTION_STORAGE_INIT_EXTERNAL = 1407; |
| 5804 | |
| 5805 | // ACTION: Storage initialization wizard initialization choice of internal/adoptable |
| 5806 | // CATEGORY: SETTINGS |
| 5807 | // OS: P |
| 5808 | ACTION_STORAGE_INIT_INTERNAL = 1408; |
| 5809 | |
| 5810 | // ACTION: Storage initialization wizard benchmark fast choice of continue |
| 5811 | // CATEGORY: SETTINGS |
| 5812 | // OS: P |
| 5813 | ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409; |
| 5814 | |
| 5815 | // ACTION: Storage initialization wizard benchmark slow choice of continue |
| 5816 | // CATEGORY: SETTINGS |
| 5817 | // OS: P |
| 5818 | ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410; |
| 5819 | |
| 5820 | // ACTION: Storage initialization wizard benchmark slow choice of abort |
| 5821 | // CATEGORY: SETTINGS |
| 5822 | // OS: P |
| 5823 | ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411; |
| 5824 | |
| 5825 | // ACTION: Storage initialization wizard migration choice of now |
| 5826 | // CATEGORY: SETTINGS |
| 5827 | // OS: P |
| 5828 | ACTION_STORAGE_MIGRATE_NOW = 1412; |
| 5829 | |
| 5830 | // ACTION: Storage initialization wizard migration choice of later |
| 5831 | // CATEGORY: SETTINGS |
| 5832 | // OS: P |
| 5833 | ACTION_STORAGE_MIGRATE_LATER = 1413; |
| 5834 | |
Felipe Leme | 1116652 | 2018-05-07 10:18:47 -0700 | [diff] [blame] | 5835 | // Tag used to report whether an activity is being autofilled on compatibility mode. |
| 5836 | FIELD_AUTOFILL_COMPAT_MODE = 1414; |
| 5837 | |
hughchen | 2bde409 | 2018-05-10 18:04:25 +0800 | [diff] [blame] | 5838 | // OPEN: Settings > Sound > Switch a2dp devices dialog |
timhypeng | be1a312 | 2018-05-04 15:28:42 +0800 | [diff] [blame] | 5839 | // CATEGORY: SETTINGS |
| 5840 | // OS: P |
hughchen | 2bde409 | 2018-05-10 18:04:25 +0800 | [diff] [blame] | 5841 | DIALOG_SWITCH_A2DP_DEVICES = 1415; |
| 5842 | |
| 5843 | // OPEN: Settings > Sound > Switch hfp devices dialog |
| 5844 | // CATEGORY: SETTINGS |
| 5845 | // OS: P |
| 5846 | DIALOG_SWITCH_HFP_DEVICES = 1416; |
timhypeng | be1a312 | 2018-05-04 15:28:42 +0800 | [diff] [blame] | 5847 | |
Beverly | c4eb934 | 2018-05-10 15:46:03 -0400 | [diff] [blame] | 5848 | // ACTION: User has started or ended charging |
| 5849 | // Type TYPE_DISMISS: Charging has ended |
| 5850 | // Type TYPE_ACTION: Charging has started, contains fields: battery level |
| 5851 | // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start |
| 5852 | // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end |
| 5853 | // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging |
| 5854 | // Tag FIELD_PLUG_TYPE: Charging plug type |
| 5855 | ACTION_CHARGE = 1417; |
| 5856 | |
| 5857 | // Tag used to determine battery level when device started charging |
| 5858 | FIELD_BATTERY_LEVEL_START = 1418; |
| 5859 | |
| 5860 | // Tag used to determine battery level when device ended charging |
| 5861 | FIELD_BATTERY_LEVEL_END = 1419; |
| 5862 | |
| 5863 | // Tag used to determine length of charging |
| 5864 | FIELD_CHARGING_DURATION_MILLIS = 1420; |
| 5865 | |
| 5866 | // Tag used to determine what type of charging was started/ended |
| 5867 | // 1 = Plugged AC |
| 5868 | // 2 = Plugged USB |
| 5869 | // 3 = Wireless |
| 5870 | FIELD_PLUG_TYPE = 1421; |
| 5871 | |
Andrew Chant | ecdc0dc | 2018-05-10 14:16:07 -0700 | [diff] [blame^] | 5872 | // ACTION: USB-C Connector connected. |
| 5873 | // CATEGORY: OTHER |
| 5874 | // OS: P |
| 5875 | ACTION_USB_CONNECTOR_CONNECTED = 1422; |
| 5876 | |
| 5877 | // ACTION: USB-C Connector disconnected. |
| 5878 | // CATEGORY: OTHER |
| 5879 | // OS: P |
| 5880 | // uses FIELD_DURATION_MILLIS for connected duration |
| 5881 | ACTION_USB_CONNECTOR_DISCONNECTED = 1423; |
| 5882 | |
| 5883 | // ACTION: USB-C Audio device connected |
| 5884 | // CATEGORY: OTHER |
| 5885 | // OS: P |
| 5886 | ACTION_USB_AUDIO_CONNECTED = 1424; |
| 5887 | |
| 5888 | // FIELD: VIDPID of connected USB Audio device |
| 5889 | // CATEGORY: OTHER |
| 5890 | // OS: P |
| 5891 | FIELD_USB_AUDIO_VIDPID = 1425; |
| 5892 | |
| 5893 | // ACTION: USB-C Audio device disconnected |
| 5894 | // CATEGORY: OTHER |
| 5895 | // OS: P |
| 5896 | // use FIELD_DURATION_MILLIS for time |
| 5897 | ACTION_USB_AUDIO_DISCONNECTED = 1426; |
| 5898 | |
| 5899 | // ACTION: Hardware failure event |
| 5900 | // CATEGORY: OTHER |
| 5901 | // OS: P |
| 5902 | ACTION_HARDWARE_FAILED = 1427; |
| 5903 | |
| 5904 | // FIELD: Hardware failure category |
| 5905 | // CATEGORY: OTHER |
| 5906 | // OS: P |
| 5907 | // Uses enum HardwareType |
| 5908 | FIELD_HARDWARE_TYPE = 1428; |
| 5909 | |
| 5910 | // FIELD: Hardware failure category |
| 5911 | // CATEGORY: OTHER |
| 5912 | // OS: P |
| 5913 | // Uses enum HardwareFailureCode |
| 5914 | FIELD_HARDWARE_FAILURE_CODE = 1429; |
| 5915 | |
| 5916 | // ACTION: Physical drop event |
| 5917 | // CATEGORY: OTHER |
| 5918 | // OS: P |
| 5919 | // use FIELD_DURATION_MILLIS for time |
| 5920 | ACTION_PHYSICAL_DROP = 1430; |
| 5921 | |
| 5922 | // FIELD: Confidence in detection of drop, in integer percentage. |
| 5923 | // CATEGORY: OTHER |
| 5924 | // OS: P |
| 5925 | FIELD_CONFIDENCE_PERCENT = 1431; |
| 5926 | |
| 5927 | // FIELD: Detected bounce acceleration, in 1/1000th of a G. |
| 5928 | // CATEGORY: OTHER |
| 5929 | // OS: P |
| 5930 | FIELD_ACCEL_MILLI_G = 1432; |
| 5931 | |
| 5932 | // ACTION: Battery health snapshot |
| 5933 | // CATEGORY: OTHER |
| 5934 | // OS: P |
| 5935 | // uses FIELD_END_BATTERY_PERCENT for batt % |
| 5936 | // uses FIELD_END_BATTERY_UA for instantaneous current load |
| 5937 | ACTION_BATTERY_HEALTH = 1433; |
| 5938 | |
| 5939 | // FIELD: Battery health snapshot type - min daily voltage, resistance, etc. |
| 5940 | // CATEGORY: OTHER |
| 5941 | // OS: P |
| 5942 | FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434; |
| 5943 | |
| 5944 | // FIELD: Battery temperature at snapshop. |
| 5945 | // CATEGORY: OTHER |
| 5946 | // OS: P |
| 5947 | FIELD_BATTERY_TEMPERATURE = 1435; |
| 5948 | |
| 5949 | // FIELD: Battery voltage at snapshot. |
| 5950 | // CATEGORY: OTHER |
| 5951 | // OS: P |
| 5952 | FIELD_BATTERY_VOLTAGE = 1436; |
| 5953 | |
| 5954 | // FIELD: Battery open circuit voltage at snapshot. |
| 5955 | // CATEGORY: OTHER |
| 5956 | // OS: P |
| 5957 | FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE = 1437; |
| 5958 | |
| 5959 | // ACTION: Battery charge cycles |
| 5960 | // Number of times the battery has charged beyond a |
| 5961 | // fractional threshold of full capacity. |
| 5962 | // CATEGORY: OTHER |
| 5963 | // OS: P |
| 5964 | ACTION_BATTERY_CHARGE_CYCLES = 1438; |
| 5965 | |
| 5966 | // FIELD: Battery charge cycles |
| 5967 | // Number of times the battery has charged beyond a |
| 5968 | // fractional threshold of full capacity. |
| 5969 | // CATEGORY: OTHER |
| 5970 | // OS: P |
| 5971 | FIELD_BATTERY_CHARGE_CYCLES = 1439; |
| 5972 | |
Beverly | bf16c14 | 2017-11-27 16:21:34 -0500 | [diff] [blame] | 5973 | // ---- End P Constants, all P constants go above this line ---- |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 5974 | // Add new aosp constants above this line. |
| 5975 | // END OF AOSP CONSTANTS |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 5976 | } |
| 5977 | } |