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