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