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