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