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