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 | |
| 25 | // Known visual elements: views or controls. |
| 26 | enum View { |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 27 | // Unknown view |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 28 | VIEW_UNKNOWN = 0; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 29 | |
| 30 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 31 | MAIN_SETTINGS = 1; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 32 | |
| 33 | // OPEN: Settings > Accessibility |
| 34 | // CATEGORY: SETTINGS |
| 35 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 36 | ACCESSIBILITY = 2; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 37 | |
| 38 | // OPEN: Settings > Accessibility > Captions |
| 39 | // CATEGORY: SETTINGS |
| 40 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 41 | ACCESSIBILITY_CAPTION_PROPERTIES = 3; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 42 | |
| 43 | // OPEN: Settings > Accessibility > [Service] |
| 44 | // CATEGORY: SETTINGS |
| 45 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 46 | ACCESSIBILITY_SERVICE = 4; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 47 | |
| 48 | // OPEN: Settings > Accessibility > Color correction |
| 49 | // CATEGORY: SETTINGS |
| 50 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 51 | ACCESSIBILITY_TOGGLE_DALTONIZER = 5; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 52 | |
| 53 | // OPEN: Settings > Accessibility > Accessibility shortcut |
| 54 | // CATEGORY: SETTINGS |
| 55 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 56 | ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 57 | |
| 58 | // OPEN: Settings > Accessibility > Magnification gestures |
| 59 | // CATEGORY: SETTINGS |
| 60 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 61 | ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 62 | |
| 63 | // OPEN: Settings > Accounts |
| 64 | // CATEGORY: SETTINGS |
| 65 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 66 | ACCOUNT = 8; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 67 | |
| 68 | // OPEN: Settings > Accounts > [Single Account Sync Settings] |
| 69 | // CATEGORY: SETTINGS |
| 70 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 71 | ACCOUNTS_ACCOUNT_SYNC = 9; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 72 | |
| 73 | // OPEN: Settings > Accounts > Add an account |
| 74 | // CATEGORY: SETTINGS |
| 75 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 76 | ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 77 | |
| 78 | // OPEN: Settings > Accounts > [List of accounts when more than one] |
| 79 | // CATEGORY: SETTINGS |
| 80 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 81 | ACCOUNTS_MANAGE_ACCOUNTS = 11; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 82 | |
| 83 | // OPEN: Settings > Cellular network settings > APNs |
| 84 | // CATEGORY: SETTINGS |
| 85 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 86 | APN = 12; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 87 | |
| 88 | // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN] |
| 89 | // CATEGORY: SETTINGS |
| 90 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 91 | APN_EDITOR = 13; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 92 | |
| 93 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 94 | APP_OPS_DETAILS = 14; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 95 | |
| 96 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 97 | APP_OPS_SUMMARY = 15; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 98 | |
| 99 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 100 | APPLICATION = 16; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 101 | |
| 102 | // OPEN: Settings > Apps > Configure apps > App links > [App] |
| 103 | // CATEGORY: SETTINGS |
| 104 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 105 | APPLICATIONS_APP_LAUNCH = 17; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 106 | |
| 107 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 108 | APPLICATIONS_APP_PERMISSION = 18; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 109 | |
| 110 | // OPEN: Settings > Internal storage > Apps storage > [App] |
| 111 | // CATEGORY: SETTINGS |
| 112 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 113 | APPLICATIONS_APP_STORAGE = 19; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 114 | |
| 115 | // OPEN: Settings > Apps > [App info] |
| 116 | // CATEGORY: SETTINGS |
| 117 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 118 | APPLICATIONS_INSTALLED_APP_DETAILS = 20; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 119 | |
| 120 | // OPEN: Settings > Memory > App usage > [App Memory usage] |
| 121 | // CATEGORY: SETTINGS |
| 122 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 123 | APPLICATIONS_PROCESS_STATS_DETAIL = 21; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 124 | |
| 125 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 126 | APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 127 | |
| 128 | // OPEN: Settings > Memory > App usage |
| 129 | // CATEGORY: SETTINGS |
| 130 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 131 | APPLICATIONS_PROCESS_STATS_UI = 23; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 132 | |
| 133 | // OPEN: Settings > Bluetooth |
| 134 | // CATEGORY: SETTINGS |
| 135 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 136 | BLUETOOTH = 24; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 137 | |
| 138 | // OPEN: Choose Bluetooth device (ex: when sharing) |
| 139 | // CATEGORY: SETTINGS |
| 140 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 141 | BLUETOOTH_DEVICE_PICKER = 25; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 142 | |
| 143 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 144 | BLUETOOTH_DEVICE_PROFILES = 26; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 145 | |
| 146 | // OPEN: Settings > Security > Choose screen lock |
| 147 | // CATEGORY: SETTINGS |
| 148 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 149 | CHOOSE_LOCK_GENERIC = 27; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 150 | |
| 151 | // OPEN: Settings > Security > Choose screen lock > Choose your password |
| 152 | // CATEGORY: SETTINGS |
| 153 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 154 | CHOOSE_LOCK_PASSWORD = 28; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 155 | |
| 156 | // OPEN: Settings > Security > Choose screen lock > Choose your pattern |
| 157 | // CATEGORY: SETTINGS |
| 158 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 159 | CHOOSE_LOCK_PATTERN = 29; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 160 | |
| 161 | // OPEN: Settings > Security > Choose screen lock > Confirm your password |
| 162 | // CATEGORY: SETTINGS |
| 163 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 164 | CONFIRM_LOCK_PASSWORD = 30; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 165 | |
| 166 | // OPEN: Settings > Security > Choose screen lock > Confirm your pattern |
| 167 | // CATEGORY: SETTINGS |
| 168 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 169 | CONFIRM_LOCK_PATTERN = 31; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 170 | |
| 171 | // OPEN: Settings > Security > Encrypt phone |
| 172 | // CATEGORY: SETTINGS |
| 173 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 174 | CRYPT_KEEPER = 32; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 175 | |
| 176 | // OPEN: Settings > Security > Encrypt phone > Confirm |
| 177 | // CATEGORY: SETTINGS |
| 178 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 179 | CRYPT_KEEPER_CONFIRM = 33; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 180 | |
| 181 | // OPEN: Settings > Search results |
| 182 | // CATEGORY: SETTINGS |
| 183 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 184 | DASHBOARD_SEARCH_RESULTS = 34; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 185 | |
| 186 | // OPEN: Settings (Root page) |
| 187 | // CATEGORY: SETTINGS |
| 188 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 189 | DASHBOARD_SUMMARY = 35; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 190 | |
| 191 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 192 | DATA_USAGE = 36; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 193 | |
| 194 | // OPEN: Settings > Data usage |
| 195 | // CATEGORY: SETTINGS |
| 196 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 197 | DATA_USAGE_SUMMARY = 37; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 198 | |
| 199 | // OPEN: Settings > Date & time |
| 200 | // CATEGORY: SETTINGS |
| 201 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 202 | DATE_TIME = 38; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 203 | |
| 204 | // OPEN: Settings > Developer options |
| 205 | // CATEGORY: SETTINGS |
| 206 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 207 | DEVELOPMENT = 39; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 208 | |
| 209 | // OPEN: Settings > About phone |
| 210 | // CATEGORY: SETTINGS |
| 211 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 212 | DEVICEINFO = 40; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 213 | |
| 214 | // OPEN: Settings > About phone > Status > IMEI information |
| 215 | // CATEGORY: SETTINGS |
| 216 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 217 | DEVICEINFO_IMEI_INFORMATION = 41; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 218 | |
| 219 | // OPEN: Settings > Internal storage |
| 220 | // CATEGORY: SETTINGS |
| 221 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 222 | DEVICEINFO_STORAGE = 42; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 223 | |
| 224 | // OPEN: Settings > About phone > Status > SIM status |
| 225 | // CATEGORY: SETTINGS |
| 226 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 227 | DEVICEINFO_SIM_STATUS = 43; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 228 | |
| 229 | // OPEN: Settings > About phone > Status |
| 230 | // CATEGORY: SETTINGS |
| 231 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 232 | DEVICEINFO_STATUS = 44; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 233 | |
| 234 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 235 | DEVICEINFO_USB = 45; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 236 | |
| 237 | // OPEN: Settings > Display |
| 238 | // CATEGORY: SETTINGS |
| 239 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 240 | DISPLAY = 46; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 241 | |
| 242 | // OPEN: Settings > Display > Daydream |
| 243 | // CATEGORY: SETTINGS |
| 244 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 245 | DREAM = 47; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 246 | |
| 247 | // OPEN: Settings > Security > Screen lock > Secure start-up |
| 248 | // CATEGORY: SETTINGS |
| 249 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 250 | ENCRYPTION = 48; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 251 | |
| 252 | // OPEN: Settings > Security > Nexus Imprint |
| 253 | // CATEGORY: SETTINGS |
| 254 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 255 | FINGERPRINT = 49; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 256 | |
| 257 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 258 | FINGERPRINT_ENROLL = 50; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 259 | |
| 260 | // OPEN: Settings > Battery > History details |
| 261 | // CATEGORY: SETTINGS |
| 262 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 263 | FUELGAUGE_BATTERY_HISTORY_DETAIL = 51; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 264 | |
| 265 | // OPEN: Settings > Battery > Battery saver |
| 266 | // CATEGORY: SETTINGS |
| 267 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 268 | FUELGAUGE_BATTERY_SAVER = 52; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 269 | |
| 270 | // OPEN: Settings > Battery > [App Use details] |
| 271 | // CATEGORY: SETTINGS |
| 272 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 273 | FUELGAUGE_POWER_USAGE_DETAIL = 53; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 274 | |
| 275 | // OPEN: Settings > Battery |
| 276 | // CATEGORY: SETTINGS |
| 277 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 278 | FUELGAUGE_POWER_USAGE_SUMMARY = 54; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 279 | |
| 280 | // OPEN: Settings > Home |
| 281 | // CATEGORY: SETTINGS |
| 282 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 283 | HOME = 55; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 284 | |
| 285 | // OPEN: Settings > Security > SIM card lock settings |
| 286 | // CATEGORY: SETTINGS |
| 287 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 288 | ICC_LOCK = 56; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 289 | |
| 290 | // OPEN: Settings > Language & input |
| 291 | // CATEGORY: SETTINGS |
| 292 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 293 | INPUTMETHOD_LANGUAGE = 57; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 294 | |
| 295 | // OPEN: Settings > Language & input > Physical keyboard |
| 296 | // CATEGORY: SETTINGS |
| 297 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 298 | INPUTMETHOD_KEYBOARD = 58; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 299 | |
| 300 | // OPEN: Settings > Language & input > Spell checker |
| 301 | // CATEGORY: SETTINGS |
| 302 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 303 | INPUTMETHOD_SPELL_CHECKERS = 59; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 304 | |
| 305 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 306 | INPUTMETHOD_SUBTYPE_ENABLER = 60; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 307 | |
| 308 | // OPEN: Settings > Language & input > Personal dictionary |
| 309 | // CATEGORY: SETTINGS |
| 310 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 311 | INPUTMETHOD_USER_DICTIONARY = 61; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 312 | |
| 313 | // OPEN: Settings > Language & input > Add word |
| 314 | // CATEGORY: SETTINGS |
| 315 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 316 | INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 317 | |
| 318 | // OPEN: Settings > Location |
| 319 | // CATEGORY: SETTINGS |
| 320 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 321 | LOCATION = 63; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 322 | |
| 323 | // OPEN: Settings > Location > Location mode |
| 324 | // CATEGORY: SETTINGS |
| 325 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 326 | LOCATION_MODE = 64; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 327 | |
| 328 | // OPEN: Settings > Apps |
| 329 | // CATEGORY: SETTINGS |
| 330 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 331 | MANAGE_APPLICATIONS = 65; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 332 | |
| 333 | // OPEN: Settings > Backup & reset > Factory data reset |
| 334 | // CATEGORY: SETTINGS |
| 335 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 336 | MASTER_CLEAR = 66; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 337 | |
| 338 | // OPEN: Settings > Backup & reset > Factory data reset > Confirm |
| 339 | // CATEGORY: SETTINGS |
| 340 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 341 | MASTER_CLEAR_CONFIRM = 67; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 342 | |
| 343 | // OPEN: Settings > Data usage > Network restrictions |
| 344 | // CATEGORY: SETTINGS |
| 345 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 346 | NET_DATA_USAGE_METERED = 68; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 347 | |
| 348 | // OPEN: Settings > More > Android Beam |
| 349 | // CATEGORY: SETTINGS |
| 350 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 351 | NFC_BEAM = 69; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 352 | |
| 353 | // OPEN: Settings > Tap & pay |
| 354 | // CATEGORY: SETTINGS |
| 355 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 356 | NFC_PAYMENT = 70; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 357 | |
| 358 | // OPEN: Settings > Sound & notification |
| 359 | // CATEGORY: SETTINGS |
| 360 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 361 | NOTIFICATION = 71; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 362 | |
| 363 | // OPEN: Settings > Sound & notification > App notifications > [App] |
| 364 | // CATEGORY: SETTINGS |
| 365 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 366 | NOTIFICATION_APP_NOTIFICATION = 72; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 367 | |
| 368 | // OPEN: Settings > Sound & notification > Other sounds |
| 369 | // CATEGORY: SETTINGS |
| 370 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 371 | NOTIFICATION_OTHER_SOUND = 73; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 372 | |
| 373 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 374 | NOTIFICATION_REDACTION = 74; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 375 | |
| 376 | // OPEN: Settings Widget > Notification log |
| 377 | // CATEGORY: SETTINGS |
| 378 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 379 | NOTIFICATION_STATION = 75; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 380 | |
| 381 | // OPEN: Settings > Sound & notification > Do not disturb |
| 382 | // CATEGORY: SETTINGS |
| 383 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 384 | NOTIFICATION_ZEN_MODE = 76; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 385 | |
| 386 | // OPEN: OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 387 | OWNER_INFO = 77; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 388 | |
| 389 | // OPEN: Print job notification > Print job settings |
| 390 | // CATEGORY: SETTINGS |
| 391 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 392 | PRINT_JOB_SETTINGS = 78; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 393 | |
| 394 | // OPEN: Settings > Printing > [Print Service] |
| 395 | // CATEGORY: SETTINGS |
| 396 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 397 | PRINT_SERVICE_SETTINGS = 79; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 398 | |
| 399 | // OPEN: Settings > Printing |
| 400 | // CATEGORY: SETTINGS |
| 401 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 402 | PRINT_SETTINGS = 80; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 403 | |
| 404 | // OPEN: Settings > Backup & reset |
| 405 | // CATEGORY: SETTINGS |
| 406 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 407 | PRIVACY = 81; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 408 | |
| 409 | //OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 410 | PROXY_SELECTOR = 82; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 411 | |
| 412 | // OPEN: Settings > Backup & reset > Network settings reset |
| 413 | // CATEGORY: SETTINGS |
| 414 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 415 | RESET_NETWORK = 83; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 416 | |
| 417 | // OPEN: Settings > Backup & reset > Network settings reset > Confirm |
| 418 | // CATEGORY: SETTINGS |
| 419 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 420 | RESET_NETWORK_CONFIRM = 84; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 421 | |
| 422 | // OPEN: Settings > Developer Options > Running Services |
| 423 | // CATEGORY: SETTINGS |
| 424 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 425 | RUNNING_SERVICE_DETAILS = 85; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 426 | |
| 427 | // OPEN: Settings > Security > Screen pinning |
| 428 | // CATEGORY: SETTINGS |
| 429 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 430 | SCREEN_PINNING = 86; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 431 | |
| 432 | // OPEN: Settings > Security |
| 433 | // CATEGORY: SETTINGS |
| 434 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 435 | SECURITY = 87; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 436 | |
| 437 | // OPEN: Settings > SIM cards |
| 438 | // CATEGORY: SETTINGS |
| 439 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 440 | SIM = 88; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 441 | |
| 442 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 443 | TESTING = 89; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 444 | |
| 445 | // OPEN: Settings > More > Tethering & portable hotspot |
| 446 | // CATEGORY: SETTINGS |
| 447 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 448 | TETHER = 90; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 449 | |
| 450 | // OPEN: Settings > Security > Trust agents |
| 451 | // CATEGORY: SETTINGS |
| 452 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 453 | TRUST_AGENT = 91; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 454 | |
| 455 | // OPEN: Settings > Security > Trusted credentials |
| 456 | // CATEGORY: SETTINGS |
| 457 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 458 | TRUSTED_CREDENTIALS = 92; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 459 | |
| 460 | // OPEN: Settings > Language & input > TTS output > [Engine] > Settings |
| 461 | // CATEGORY: SETTINGS |
| 462 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 463 | TTS_ENGINE_SETTINGS = 93; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 464 | |
| 465 | // OPEN: Settings > Language & input > Text-to-speech output |
| 466 | // CATEGORY: SETTINGS |
| 467 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 468 | TTS_TEXT_TO_SPEECH = 94; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 469 | |
| 470 | // OPEN: Settings > Security > Apps with usage access |
| 471 | // CATEGORY: SETTINGS |
| 472 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 473 | USAGE_ACCESS = 95; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 474 | |
| 475 | // OPEN: Settings > Users |
| 476 | // CATEGORY: SETTINGS |
| 477 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 478 | USER = 96; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 479 | |
| 480 | // OPEN: Settings > Users > [Restricted profile app & content access] |
| 481 | // CATEGORY: SETTINGS |
| 482 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 483 | USERS_APP_RESTRICTIONS = 97; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 484 | |
| 485 | // OPEN: Settings > Users > [User settings] |
| 486 | // CATEGORY: SETTINGS |
| 487 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 488 | USER_DETAILS = 98; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 489 | |
| 490 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 491 | VOICE_INPUT = 99; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 492 | |
| 493 | // OPEN: Settings > More > VPN |
| 494 | // CATEGORY: SETTINGS |
| 495 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 496 | VPN = 100; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 497 | |
| 498 | // OPEN: Settings > Display > Choose wallpaper from |
| 499 | // CATEGORY: SETTINGS |
| 500 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 501 | WALLPAPER_TYPE = 101; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 502 | |
| 503 | // OPEN: Settings > Display > Cast |
| 504 | // CATEGORY: SETTINGS |
| 505 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 506 | WFD_WIFI_DISPLAY = 102; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 507 | |
| 508 | // OPEN: Settings > Wi-Fi |
| 509 | // CATEGORY: SETTINGS |
| 510 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 511 | WIFI = 103; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 512 | |
| 513 | // OPEN: Settings > Wi-Fi > Advanced Wi-Fi |
| 514 | // CATEGORY: SETTINGS |
| 515 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 516 | WIFI_ADVANCED = 104; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 517 | |
| 518 | // OPEN: Settings > More > Wi-Fi Calling |
| 519 | // CATEGORY: SETTINGS |
| 520 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 521 | WIFI_CALLING = 105; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 522 | |
| 523 | // OPEN: Settings > Wi-Fi > Saved networks |
| 524 | // CATEGORY: SETTINGS |
| 525 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 526 | WIFI_SAVED_ACCESS_POINTS = 106; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 527 | |
| 528 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 529 | WIFI_APITEST = 107; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 530 | |
| 531 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 532 | WIFI_INFO = 108; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 533 | |
| 534 | // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct |
| 535 | // CATEGORY: SETTINGS |
| 536 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 537 | WIFI_P2P = 109; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 538 | |
| 539 | // OPEN: Settings > More |
| 540 | // CATEGORY: SETTINGS |
| 541 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 542 | WIRELESS = 110; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 543 | |
| 544 | // OPEN: Quick Settings Panel |
| 545 | // CATEGORY: QUICK_SETTINGS |
| 546 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 547 | QS_PANEL = 111; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 548 | |
| 549 | // OPEN: QS Airplane mode tile shown |
| 550 | // ACTION: QS Airplane mode tile tapped |
| 551 | // SUBTYPE: 0 is off, 1 is on |
| 552 | // CATEGORY: QUICK_SETTINGS |
| 553 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 554 | QS_AIRPLANEMODE = 112; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 555 | |
| 556 | // OPEN: QS Bluetooth tile shown |
| 557 | // ACTION: QS Bluetooth tile tapped |
| 558 | // SUBTYPE: 0 is off, 1 is on |
| 559 | // CATEGORY: QUICK_SETTINGS |
| 560 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 561 | QS_BLUETOOTH = 113; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 562 | |
| 563 | // OPEN: QS Cast tile shown |
| 564 | // ACTION: QS Cast tile tapped |
| 565 | // CATEGORY: QUICK_SETTINGS |
| 566 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 567 | QS_CAST = 114; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 568 | |
| 569 | // OPEN: QS Cellular tile shown |
| 570 | // ACTION: QS Cellular tile tapped |
| 571 | // CATEGORY: QUICK_SETTINGS |
| 572 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 573 | QS_CELLULAR = 115; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 574 | |
| 575 | // OPEN: QS Color inversion tile shown |
| 576 | // ACTION: QS Color inversion tile tapped |
| 577 | // SUBTYPE: 0 is off, 1 is on |
| 578 | // CATEGORY: QUICK_SETTINGS |
| 579 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 580 | QS_COLORINVERSION = 116; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 581 | |
| 582 | // OPEN: QS Cellular tile > Cellular detail panel |
| 583 | // CATEGORY: QUICK_SETTINGS |
| 584 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 585 | QS_DATAUSAGEDETAIL = 117; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 586 | |
| 587 | // OPEN: QS Do not disturb tile shown |
| 588 | // ACTION: QS Do not disturb tile tapped |
| 589 | // SUBTYPE: 0 is off, 1 is on |
| 590 | // CATEGORY: QUICK_SETTINGS |
| 591 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 592 | QS_DND = 118; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 593 | |
| 594 | // OPEN: QS Flashlight tile shown |
| 595 | // ACTION: QS Flashlight tile tapped |
| 596 | // SUBTYPE: 0 is off, 1 is on |
| 597 | // CATEGORY: QUICK_SETTINGS |
| 598 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 599 | QS_FLASHLIGHT = 119; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 600 | |
| 601 | // OPEN: QS Hotspot tile shown |
| 602 | // ACTION: QS Hotspot tile tapped |
| 603 | // SUBTYPE: 0 is off, 1 is on |
| 604 | // CATEGORY: QUICK_SETTINGS |
| 605 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 606 | QS_HOTSPOT = 120; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 607 | |
| 608 | // OPEN: QS 3P tile shown |
| 609 | // ACTION: QS 3P tile tapped |
| 610 | // CATEGORY: QUICK_SETTINGS |
| 611 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 612 | QS_INTENT = 121; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 613 | |
| 614 | // OPEN: QS Location tile shown |
| 615 | // ACTION: QS Location tile tapped |
| 616 | // SUBTYPE: 0 is off, 1 is on |
| 617 | // CATEGORY: QUICK_SETTINGS |
| 618 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 619 | QS_LOCATION = 122; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 620 | |
| 621 | // OPEN: QS Rotation tile shown |
| 622 | // ACTION: QS Rotation tile tapped |
| 623 | // SUBTYPE: 0 is off, 1 is on |
| 624 | // CATEGORY: QUICK_SETTINGS |
| 625 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 626 | QS_ROTATIONLOCK = 123; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 627 | |
| 628 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 629 | QS_USERDETAILITE = 124; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 630 | |
| 631 | // OPEN: QS User list panel |
| 632 | // CATEGORY: QUICK_SETTINGS |
| 633 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 634 | QS_USERDETAIL = 125; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 635 | |
| 636 | // OPEN: QS WiFi tile shown |
| 637 | // ACTION: QS WiFi 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_WIFI = 126; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 642 | |
| 643 | // OPEN: Notification Panel (including lockscreen) |
| 644 | // CATEGORY: NOTIFICATION |
| 645 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 646 | NOTIFICATION_PANEL = 127; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 647 | |
| 648 | // OPEN: Notification in panel became visible. |
| 649 | // PACKAGE: App that posted the notification. |
| 650 | // ACTION: Notification is tapped. |
| 651 | // PACKAGE: App that posted the notification |
| 652 | // DETAIL: Notification is expanded by user. |
| 653 | // PACKAGE: App that posted the notification |
| 654 | // DISMISS: Notification is dismissed. |
| 655 | // PACKAGE: App that posted the notification |
| 656 | // SUBTYPE: Dismiss reason from NotificationManagerService.java |
| 657 | // CATEGORY: NOTIFICATION |
| 658 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 659 | NOTIFICATION_ITEM = 128; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 660 | |
| 661 | // ACTION: User tapped notification action |
| 662 | // PACKAGE: App that posted the notification |
| 663 | // SUBTYPE: Index of action on notification |
| 664 | // CATEGORY: NOTIFICATION |
| 665 | // OS: 5.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 666 | NOTIFICATION_ITEM_ACTION = 129; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 667 | |
| 668 | // OPEN: Settings > Apps > Configure apps > App permissions |
| 669 | // CATEGORY: SETTINGS |
| 670 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 671 | APPLICATIONS_ADVANCED = 130; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 672 | |
| 673 | // OPEN: Settings > Location > Scanning |
| 674 | // CATEGORY: SETTINGS |
| 675 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 676 | LOCATION_SCANNING = 131; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 677 | |
| 678 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 679 | MANAGE_APPLICATIONS_ALL = 132; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 680 | |
| 681 | // OPEN: Settings > Sound & notification > App notifications |
| 682 | // CATEGORY: SETTINGS |
| 683 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 684 | MANAGE_APPLICATIONS_NOTIFICATIONS = 133; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 685 | |
| 686 | // ACTION: Settings > Wi-Fi > Overflow > Add Network |
| 687 | // CATEGORY: SETTINGS |
| 688 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 689 | ACTION_WIFI_ADD_NETWORK = 134; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 690 | |
| 691 | // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network |
Stephen Chen | 0d14da3 | 2016-11-03 10:44:32 -0700 | [diff] [blame] | 692 | // SUBTYPE: true if connecting to a saved network, false if not |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 693 | // CATEGORY: SETTINGS |
| 694 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 695 | ACTION_WIFI_CONNECT = 135; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 696 | |
| 697 | // ACTION: Settings > Wi-Fi > Overflow > Refresh |
| 698 | // CATEGORY: SETTINGS |
| 699 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 700 | ACTION_WIFI_FORCE_SCAN = 136; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 701 | |
| 702 | // ACTION: Settings > Wi-Fi > [Long press network] > Forget network |
| 703 | // CATEGORY: SETTINGS |
| 704 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 705 | ACTION_WIFI_FORGET = 137; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 706 | |
| 707 | // ACTION: Settings > Wi-Fi > Toggle off |
Stephen Chen | 0d14da3 | 2016-11-03 10:44:32 -0700 | [diff] [blame] | 708 | // SUBTYPE: true if connected to network before toggle, false if not |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 709 | // CATEGORY: SETTINGS |
| 710 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 711 | ACTION_WIFI_OFF = 138; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 712 | |
| 713 | // ACTION: Settings > Wi-Fi > Toggle on |
| 714 | // CATEGORY: SETTINGS |
| 715 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 716 | ACTION_WIFI_ON = 139; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 717 | |
| 718 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 719 | MANAGE_PERMISSIONS = 140; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 720 | |
| 721 | // OPEN: Settings > Sound & notification > DND > Priority only allows |
| 722 | // CATEGORY: SETTINGS |
| 723 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 724 | NOTIFICATION_ZEN_MODE_PRIORITY = 141; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 725 | |
| 726 | // OPEN: Settings > Sound & notification > DND > Automatic rules |
| 727 | // CATEGORY: SETTINGS |
| 728 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 729 | NOTIFICATION_ZEN_MODE_AUTOMATION = 142; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 730 | |
| 731 | // OPEN: Settings > Apps > Configure apps > App links |
| 732 | // CATEGORY: SETTINGS |
| 733 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 734 | MANAGE_DOMAIN_URLS = 143; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 735 | |
| 736 | // OPEN: Settings > Sound & notification > DND > [Time based rule] |
| 737 | // CATEGORY: SETTINGS |
| 738 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 739 | NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 740 | |
| 741 | // OPEN: Settings > Sound & notification > DND > [External rule] |
| 742 | // CATEGORY: SETTINGS |
| 743 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 744 | NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 745 | |
| 746 | // OPEN: Settings > Sound & notification > DND > [Event rule] |
| 747 | // CATEGORY: SETTINGS |
| 748 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 749 | NOTIFICATION_ZEN_MODE_EVENT_RULE = 146; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 750 | |
| 751 | // ACTION: App notification settings > Block Notifications |
| 752 | // CATEGORY: SETTINGS |
| 753 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 754 | ACTION_BAN_APP_NOTES = 147; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 755 | |
| 756 | // ACTION: Notification shade > Dismiss all button |
| 757 | // CATEGORY: NOTIFICATION |
| 758 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 759 | ACTION_DISMISS_ALL_NOTES = 148; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 760 | |
| 761 | // OPEN: QS Do Not Disturb detail panel |
| 762 | // CATEGORY: QUICK_SETTINGS |
| 763 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 764 | QS_DND_DETAILS = 149; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 765 | |
| 766 | // OPEN: QS Bluetooth detail panel |
| 767 | // CATEGORY: QUICK_SETTINGS |
| 768 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 769 | QS_BLUETOOTH_DETAILS = 150; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 770 | |
| 771 | // OPEN: QS Cast detail panel |
| 772 | // CATEGORY: QUICK_SETTINGS |
| 773 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 774 | QS_CAST_DETAILS = 151; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 775 | |
| 776 | // OPEN: QS Wi-Fi detail panel |
| 777 | // CATEGORY: QUICK_SETTINGS |
| 778 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 779 | QS_WIFI_DETAILS = 152; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 780 | |
| 781 | // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle |
| 782 | // SUBTYPE: 0 is off, 1 is on |
| 783 | // CATEGORY: QUICK_SETTINGS |
| 784 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 785 | QS_WIFI_TOGGLE = 153; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 786 | |
| 787 | // ACTION: QS Bluetooth detail panel > Bluetooth toggle |
| 788 | // SUBTYPE: 0 is off, 1 is on |
| 789 | // CATEGORY: QUICK_SETTINGS |
| 790 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 791 | QS_BLUETOOTH_TOGGLE = 154; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 792 | |
| 793 | // ACTION: QS Cellular detail panel > Cellular toggle |
| 794 | // SUBTYPE: 0 is off, 1 is on |
| 795 | // CATEGORY: QUICK_SETTINGS |
| 796 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 797 | QS_CELLULAR_TOGGLE = 155; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 798 | |
| 799 | // ACTION: QS User list panel > Select different user |
| 800 | // CATEGORY: QUICK_SETTINGS |
| 801 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 802 | QS_SWITCH_USER = 156; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 803 | |
| 804 | // ACTION: QS Cast detail panel > Select cast device |
| 805 | // CATEGORY: QUICK_SETTINGS |
| 806 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 807 | QS_CAST_SELECT = 157; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 808 | |
| 809 | // ACTION: QS Cast detail panel > Disconnect cast device |
| 810 | // CATEGORY: QUICK_SETTINGS |
| 811 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 812 | QS_CAST_DISCONNECT = 158; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 813 | |
| 814 | // ACTION: Settings > Bluetooth > Toggle |
| 815 | // SUBTYPE: 0 is off, 1 is on |
| 816 | // CATEGORY: SETTINGS |
| 817 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 818 | ACTION_BLUETOOTH_TOGGLE = 159; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 819 | |
| 820 | // ACTION: Settings > Bluetooth > Overflow > Refresh |
| 821 | // CATEGORY: SETTINGS |
| 822 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 823 | ACTION_BLUETOOTH_SCAN = 160; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 824 | |
| 825 | // ACTION: Settings > Bluetooth > Overflow > Rename this device |
| 826 | // CATEGORY: SETTINGS |
| 827 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 828 | ACTION_BLUETOOTH_RENAME = 161; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 829 | |
| 830 | // ACTION: Settings > Bluetooth > Overflow > Show received files |
| 831 | // CATEGORY: SETTINGS |
| 832 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 833 | ACTION_BLUETOOTH_FILES = 162; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 834 | |
| 835 | // ACTION: QS DND details panel > Increase / Decrease exit time |
| 836 | // SUBTYPE: true is increase, false is decrease |
| 837 | // CATEGORY: QUICK_SETTINGS |
| 838 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 839 | QS_DND_TIME = 163; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 840 | |
| 841 | // ACTION: QS DND details panel > [Exit condition] |
| 842 | // CATEGORY: QUICK_SETTINGS |
| 843 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 844 | QS_DND_CONDITION_SELECT = 164; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 845 | |
| 846 | // ACTION: QS DND details panel > [DND mode] |
| 847 | // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only |
| 848 | // CATEGORY: QUICK_SETTINGS |
| 849 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 850 | QS_DND_ZEN_SELECT = 165; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 851 | |
| 852 | // ACTION: QS DND detail panel > DND toggle |
| 853 | // SUBTYPE: 0 is off, 1 is on |
| 854 | // CATEGORY: QUICK_SETTINGS |
| 855 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 856 | QS_DND_TOGGLE = 166; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 857 | |
| 858 | // ACTION: DND Settings > Priority only allows > Reminder toggle |
| 859 | // SUBTYPE: 0 is off, 1 is on |
| 860 | // CATEGORY: SETTINGS |
| 861 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 862 | ACTION_ZEN_ALLOW_REMINDERS = 167; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 863 | |
| 864 | // ACTION: DND Settings > Priority only allows > Event toggle |
| 865 | // SUBTYPE: 0 is off, 1 is on |
| 866 | // CATEGORY: SETTINGS |
| 867 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 868 | ACTION_ZEN_ALLOW_EVENTS = 168; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 869 | |
| 870 | // ACTION: DND Settings > Priority only allows > Messages |
| 871 | // SUBTYPE: 0 is off, 1 is on |
| 872 | // CATEGORY: SETTINGS |
| 873 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 874 | ACTION_ZEN_ALLOW_MESSAGES = 169; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 875 | |
| 876 | // ACTION: DND Settings > Priority only allows > Calls |
| 877 | // SUBTYPE: 0 is off, 1 is on |
| 878 | // CATEGORY: SETTINGS |
| 879 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 880 | ACTION_ZEN_ALLOW_CALLS = 170; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 881 | |
| 882 | // ACTION: DND Settings > Priority only allows > Repeat callers toggle |
| 883 | // SUBTYPE: 0 is off, 1 is on |
| 884 | // CATEGORY: SETTINGS |
| 885 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 886 | ACTION_ZEN_ALLOW_REPEAT_CALLS = 171; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 887 | |
| 888 | // ACTION: DND Settings > Automatic rules > Add rule |
| 889 | // CATEGORY: SETTINGS |
| 890 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 891 | ACTION_ZEN_ADD_RULE = 172; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 892 | |
| 893 | // ACTION: DND Settings > Automatic rules > Add rule > OK |
| 894 | // CATEGORY: SETTINGS |
| 895 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 896 | ACTION_ZEN_ADD_RULE_OK = 173; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 897 | |
| 898 | // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule |
| 899 | // CATEGORY: SETTINGS |
| 900 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 901 | ACTION_ZEN_DELETE_RULE = 174; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 902 | |
| 903 | // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete |
| 904 | // CATEGORY: SETTINGS |
| 905 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 906 | ACTION_ZEN_DELETE_RULE_OK = 175; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 907 | |
| 908 | // ACTION: DND Settings > Automatic rules > [Rule] > Toggle |
| 909 | // SUBTYPE: 0 is off, 1 is on |
| 910 | // CATEGORY: SETTINGS |
| 911 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 912 | ACTION_ZEN_ENABLE_RULE = 176; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 913 | |
| 914 | // ACTION: Settings > More > Airplane mode toggle |
| 915 | // SUBTYPE: 0 is off, 1 is on |
| 916 | // CATEGORY: SETTINGS |
| 917 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 918 | ACTION_AIRPLANE_TOGGLE = 177; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 919 | |
| 920 | // ACTION: Settings > Data usage > Cellular data toggle |
| 921 | // SUBTYPE: 0 is off, 1 is on |
| 922 | // CATEGORY: SETTINGS |
| 923 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 924 | ACTION_CELL_DATA_TOGGLE = 178; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 925 | |
| 926 | // OPEN: Settings > Sound & notification > Notification access |
| 927 | // CATEGORY: SETTINGS |
| 928 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 929 | NOTIFICATION_ACCESS = 179; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 930 | |
| 931 | // OPEN: Settings > Sound & notification > Do Not Disturb access |
| 932 | // CATEGORY: SETTINGS |
| 933 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 934 | NOTIFICATION_ZEN_MODE_ACCESS = 180; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 935 | |
| 936 | // OPEN: Settings > Apps > Configure apps > Default Apps |
| 937 | // CATEGORY: SETTINGS |
| 938 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 939 | APPLICATIONS_DEFAULT_APPS = 181; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 940 | |
| 941 | // OPEN: Settings > Internal storage > Apps storage |
| 942 | // CATEGORY: SETTINGS |
| 943 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 944 | APPLICATIONS_STORAGE_APPS = 182; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 945 | |
| 946 | // OPEN: Settings > Security > Usage access |
| 947 | // CATEGORY: SETTINGS |
| 948 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 949 | APPLICATIONS_USAGE_ACCESS_DETAIL = 183; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 950 | |
| 951 | // OPEN: Settings > Battery > Battery optimization |
| 952 | // CATEGORY: SETTINGS |
| 953 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 954 | APPLICATIONS_HIGH_POWER_APPS = 184; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 955 | |
| 956 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 957 | FUELGAUGE_HIGH_POWER_DETAILS = 185; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 958 | |
| 959 | // ACTION: Lockscreen > Unlock gesture |
| 960 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 961 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 962 | ACTION_LS_UNLOCK = 186; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 963 | |
| 964 | // ACTION: Lockscreen > Pull shade open |
| 965 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 966 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 967 | ACTION_LS_SHADE = 187; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 968 | |
| 969 | // ACTION: Lockscreen > Tap on lock, shows hint |
| 970 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 971 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 972 | ACTION_LS_HINT = 188; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 973 | |
| 974 | // ACTION: Lockscreen > Camera |
| 975 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 976 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 977 | ACTION_LS_CAMERA = 189; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 978 | |
| 979 | // ACTION: Lockscreen > Dialer |
| 980 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 981 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 982 | ACTION_LS_DIALER = 190; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 983 | |
| 984 | // ACTION: Lockscreen > Tap on lock, locks phone |
| 985 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 986 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 987 | ACTION_LS_LOCK = 191; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 988 | |
| 989 | // ACTION: Lockscreen > Tap on notification, false touch rejection |
| 990 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 991 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 992 | ACTION_LS_NOTE = 192; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 993 | |
| 994 | // ACTION: Lockscreen > Swipe down to open quick settings |
| 995 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 996 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 997 | ACTION_LS_QS = 193; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 998 | |
| 999 | // ACTION: Swipe down to open quick settings when unlocked |
| 1000 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1001 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1002 | ACTION_SHADE_QS_PULL = 194; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1003 | |
| 1004 | // ACTION: Notification shade > Tap to open quick settings |
| 1005 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1006 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1007 | ACTION_SHADE_QS_TAP = 195; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1008 | |
| 1009 | // OPEN: Lockscreen |
| 1010 | // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN |
| 1011 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1012 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1013 | LOCKSCREEN = 196; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1014 | |
| 1015 | // OPEN: Lockscreen > Screen to enter password / pattern / PIN |
| 1016 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1017 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1018 | BOUNCER = 197; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1019 | |
| 1020 | // OPEN: Screen turned on |
| 1021 | // SUBTYPE: 2 is user action |
| 1022 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1023 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1024 | SCREEN = 198; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1025 | |
| 1026 | // OPEN: Notification caused sound, vibration, and/or LED blink |
| 1027 | // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together |
| 1028 | // CATEGORY: NOTIFICATION |
| 1029 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1030 | NOTIFICATION_ALERT = 199; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1031 | |
| 1032 | // ACTION: Lockscreen > Emergency Call button |
| 1033 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1034 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1035 | ACTION_EMERGENCY_CALL = 200; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1036 | |
| 1037 | // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input |
| 1038 | // CATEGORY: SETTINGS |
| 1039 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1040 | APPLICATIONS_MANAGE_ASSIST = 201; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1041 | |
| 1042 | // OPEN: Settings > Memory |
| 1043 | // CATEGORY: SETTINGS |
| 1044 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1045 | PROCESS_STATS_SUMMARY = 202; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1046 | |
| 1047 | // ACTION: Settings > Display > When device is rotated |
| 1048 | // CATEGORY: SETTINGS |
| 1049 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1050 | ACTION_ROTATION_LOCK = 203; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1051 | |
| 1052 | // ACTION: Long press on notification to view controls |
| 1053 | // CATEGORY: NOTIFICATION |
| 1054 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1055 | ACTION_NOTE_CONTROLS = 204; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1056 | |
| 1057 | // ACTION: Notificatoin controls > Info button |
| 1058 | // CATEGORY: NOTIFICATION |
| 1059 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1060 | ACTION_NOTE_INFO = 205; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1061 | |
| 1062 | // ACTION: Notification controls > Settings button |
| 1063 | // CATEGORY: NOTIFICATION |
| 1064 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1065 | ACTION_APP_NOTE_SETTINGS = 206; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1066 | |
| 1067 | // OPEN: Volume Dialog (with hardware buttons) |
| 1068 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1069 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1070 | VOLUME_DIALOG = 207; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1071 | |
| 1072 | // OPEN: Volume dialog > Expanded volume dialog (multiple sliders) |
| 1073 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1074 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1075 | VOLUME_DIALOG_DETAILS = 208; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1076 | |
| 1077 | // ACTION: Volume dialog > Adjust volume slider |
| 1078 | // SUBTYPE: volume level (0-7) |
| 1079 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1080 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1081 | ACTION_VOLUME_SLIDER = 209; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1082 | |
| 1083 | // ACTION: Volume dialog > Select non-active stream |
| 1084 | // SUBTYPE: stream (defined in AudioSystem.java) |
| 1085 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1086 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1087 | ACTION_VOLUME_STREAM = 210; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1088 | |
| 1089 | // ACTION: Adjust volume with hardware key |
| 1090 | // SUBTYPE: volume level (0-7) |
| 1091 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1092 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1093 | ACTION_VOLUME_KEY = 211; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1094 | |
| 1095 | // ACTION: Volume dialog > Mute a stream by tapping icon |
| 1096 | // SUBTYPE: mute is 1, audible is 2 |
| 1097 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1098 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1099 | ACTION_VOLUME_ICON = 212; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1100 | |
| 1101 | // ACTION: Volume dialog > Change ringer mode by tapping icon |
| 1102 | // SUBTYPE: 2 is audible, 3 is vibrate |
| 1103 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1104 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1105 | ACTION_RINGER_MODE = 213; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1106 | |
| 1107 | // ACTION: Chooser shown (share target, file open, etc.) |
| 1108 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1109 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1110 | ACTION_ACTIVITY_CHOOSER_SHOWN = 214; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1111 | |
| 1112 | // ACTION: Chooser > User taps an app target |
| 1113 | // SUBTYPE: Index of target |
| 1114 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1115 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1116 | ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1117 | |
| 1118 | // ACTION: Chooser > User taps a service target |
| 1119 | // SUBTYPE: Index of target |
| 1120 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1121 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1122 | ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1123 | |
| 1124 | // ACTION: Chooser > User taps a standard target |
| 1125 | // SUBTYPE: Index of target |
| 1126 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1127 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1128 | ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1129 | |
| 1130 | // ACTION: QS Brightness Slider (with auto brightness disabled) |
| 1131 | // SUBTYPE: slider value |
| 1132 | // CATEGORY: QUICK_SETTINGS |
| 1133 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1134 | ACTION_BRIGHTNESS = 218; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1135 | |
| 1136 | // ACTION: QS Brightness Slider (with auto brightness enabled) |
| 1137 | // SUBTYPE: slider value |
| 1138 | // CATEGORY: QUICK_SETTINGS |
| 1139 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1140 | ACTION_BRIGHTNESS_AUTO = 219; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1141 | |
| 1142 | // OPEN: Settings > Display > Brightness Slider |
| 1143 | // CATEGORY: SETTINGS |
| 1144 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1145 | BRIGHTNESS_DIALOG = 220; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1146 | |
| 1147 | // OPEN: Settings > Apps > Configure Apps > Draw over other apps |
| 1148 | // CATEGORY: SETTINGS |
| 1149 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1150 | SYSTEM_ALERT_WINDOW_APPS = 221; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1151 | |
| 1152 | // OPEN: Display has entered dream mode |
| 1153 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1154 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1155 | DREAMING = 222; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1156 | |
| 1157 | // OPEN: Display has entered ambient notification mode |
| 1158 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1159 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1160 | DOZING = 223; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1161 | |
| 1162 | // OPEN: Overview |
| 1163 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1164 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1165 | OVERVIEW_ACTIVITY = 224; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1166 | |
| 1167 | // OPEN: Settings > About phone > Legal information |
| 1168 | // CATEGORY: SETTINGS |
| 1169 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1170 | ABOUT_LEGAL_SETTINGS = 225; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1171 | |
| 1172 | // OPEN: Settings > Search > Perform search |
| 1173 | // CATEGORY: SETTINGS |
| 1174 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1175 | ACTION_SEARCH_RESULTS = 226; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1176 | |
| 1177 | // OPEN: Settings > System UI Tuner |
| 1178 | // CATEGORY: SETTINGS |
| 1179 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1180 | TUNER = 227; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1181 | |
| 1182 | // OPEN: Settings > System UI Tuner > Quick Settings |
| 1183 | // CATEGORY: SETTINGS |
| 1184 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1185 | TUNER_QS = 228; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1186 | |
| 1187 | // OPEN: Settings > System UI Tuner > Demo mode |
| 1188 | // CATEGORY: SETTINGS |
| 1189 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1190 | TUNER_DEMO_MODE = 229; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1191 | |
| 1192 | // ACTION: Settings > System UI Tuner > Quick Settings > Move tile |
| 1193 | // PACKAGE: Tile |
| 1194 | // CATEGORY: SETTINGS |
| 1195 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1196 | TUNER_QS_REORDER = 230; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1197 | |
| 1198 | // ACTION: Settings > System UI Tuner > Quick Settings > Add tile |
| 1199 | // PACKAGE: Tile |
| 1200 | // CATEGORY: SETTINGS |
| 1201 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1202 | TUNER_QS_ADD = 231; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1203 | |
| 1204 | // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile |
| 1205 | // PACKAGE: Tile |
| 1206 | // CATEGORY: SETTINGS |
| 1207 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1208 | TUNER_QS_REMOVE = 232; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1209 | |
| 1210 | // ACTION: Settings > System UI Tuner > Status bar > Enable icon |
| 1211 | // PACKAGE: Icon |
| 1212 | // CATEGORY: SETTINGS |
| 1213 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1214 | TUNER_STATUS_BAR_ENABLE = 233; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1215 | |
| 1216 | // ACTION: Settings > System UI Tuner > Status bar > Disable icon |
| 1217 | // PACKAGE: Icon |
| 1218 | // CATEGORY: SETTINGS |
| 1219 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1220 | TUNER_STATUS_BAR_DISABLE = 234; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1221 | |
| 1222 | // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode |
| 1223 | // SUBTYPE: false is disabled, true is enabled |
| 1224 | // CATEGORY: SETTINGS |
| 1225 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1226 | TUNER_DEMO_MODE_ENABLED = 235; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1227 | |
| 1228 | // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode |
| 1229 | // SUBTYPE: false is disabled, true is enabled |
| 1230 | // CATEGORY: SETTINGS |
| 1231 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1232 | TUNER_DEMO_MODE_ON = 236; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1233 | |
| 1234 | // ACTION: Settings > System UI Tuner > Show embedded battery percentage |
| 1235 | // SUBTYPE: 0 is disabled, 1 is enabled |
| 1236 | // CATEGORY: SETTINGS |
| 1237 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1238 | TUNER_BATTERY_PERCENTAGE = 237; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1239 | |
| 1240 | // OPEN: Settings > Developer options > Inactive apps |
| 1241 | // CATEGORY: SETTINGS |
| 1242 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1243 | FUELGAUGE_INACTIVE_APPS = 238; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1244 | |
| 1245 | // ACTION: Long press home to bring up assistant |
| 1246 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1247 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1248 | ACTION_ASSIST_LONG_PRESS = 239; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1249 | |
| 1250 | // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint |
| 1251 | // CATEGORY: SETTINGS |
| 1252 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1253 | FINGERPRINT_ENROLLING = 240; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1254 | |
| 1255 | // OPEN: Fingerprint Enroll > Find Sensor |
| 1256 | // CATEGORY: SETTINGS |
| 1257 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1258 | FINGERPRINT_FIND_SENSOR = 241; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1259 | |
| 1260 | // OPEN: Fingerprint Enroll > Fingerprint Enrolled! |
| 1261 | // CATEGORY: SETTINGS |
| 1262 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1263 | FINGERPRINT_ENROLL_FINISH = 242; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1264 | |
| 1265 | // OPEN: Fingerprint Enroll introduction |
| 1266 | // CATEGORY: SETTINGS |
| 1267 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1268 | FINGERPRINT_ENROLL_INTRO = 243; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1269 | |
| 1270 | // OPEN: Fingerprint Enroll onboarding |
| 1271 | // CATEGORY: SETTINGS |
| 1272 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1273 | FINGERPRINT_ENROLL_ONBOARD = 244; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1274 | |
| 1275 | // OPEN: Fingerprint Enroll > Let's Start! |
| 1276 | // CATEGORY: SETTINGS |
| 1277 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1278 | FINGERPRINT_ENROLL_SIDECAR = 245; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1279 | |
| 1280 | // OPEN: Fingerprint Enroll SUW > Let's Start! |
| 1281 | // CATEGORY: SETTINGS |
| 1282 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1283 | FINGERPRINT_ENROLLING_SETUP = 246; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1284 | |
| 1285 | // OPEN: Fingerprint Enroll SUW > Find Sensor |
| 1286 | // CATEGORY: SETTINGS |
| 1287 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1288 | FINGERPRINT_FIND_SENSOR_SETUP = 247; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1289 | |
| 1290 | // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled! |
| 1291 | // CATEGORY: SETTINGS |
| 1292 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1293 | FINGERPRINT_ENROLL_FINISH_SETUP = 248; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1294 | |
| 1295 | // OPEN: Fingerprint Enroll SUW introduction |
| 1296 | // CATEGORY: SETTINGS |
| 1297 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1298 | FINGERPRINT_ENROLL_INTRO_SETUP = 249; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1299 | |
| 1300 | // OPEN: Fingerprint Enroll SUW onboarding |
| 1301 | // CATEGORY: SETTINGS |
| 1302 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1303 | FINGERPRINT_ENROLL_ONBOARD_SETUP = 250; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1304 | |
| 1305 | // ACTION: Add fingerprint > Enroll fingerprint |
| 1306 | // CATEGORY: SETTINGS |
| 1307 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1308 | ACTION_FINGERPRINT_ENROLL = 251; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1309 | |
| 1310 | // ACTION: Authenticate using fingerprint |
| 1311 | // CATEGORY: SETTINGS |
| 1312 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1313 | ACTION_FINGERPRINT_AUTH = 252; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1314 | |
| 1315 | // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete |
| 1316 | // CATEGORY: SETTINGS |
| 1317 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1318 | ACTION_FINGERPRINT_DELETE = 253; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1319 | |
| 1320 | // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename |
| 1321 | // CATEGORY: SETTINGS |
| 1322 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1323 | ACTION_FINGERPRINT_RENAME = 254; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1324 | |
| 1325 | // ACTION: Double tap camera shortcut |
| 1326 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1327 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1328 | ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1329 | |
| 1330 | // ACTION: Double twist camera shortcut |
| 1331 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1332 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1333 | ACTION_WIGGLE_CAMERA_GESTURE = 256; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1334 | |
| 1335 | // OPEN: QS Work Mode tile shown |
| 1336 | // ACTION: QS Work Mode tile tapped |
| 1337 | // SUBTYPE: 0 is off, 1 is on |
| 1338 | // CATEGORY: QUICK_SETTINGS |
| 1339 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1340 | QS_WORKMODE = 257; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1341 | |
| 1342 | // OPEN: Settings > Developer Options > Background Check |
| 1343 | // CATEGORY: SETTINGS |
| 1344 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1345 | BACKGROUND_CHECK_SUMMARY = 258; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1346 | |
| 1347 | // OPEN: QS Lock tile shown |
| 1348 | // ACTION: QS Lock tile tapped |
| 1349 | // SUBTYPE: 0 is off, 1 is on |
| 1350 | // CATEGORY: QUICK_SETTINGS |
| 1351 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1352 | QS_LOCK_TILE = 259; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1353 | |
| 1354 | // OPEN: QS User Tile shown |
| 1355 | // CATEGORY: QUICK_SETTINGS |
| 1356 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1357 | QS_USER_TILE = 260; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1358 | |
| 1359 | // OPEN: QS Battery tile shown |
| 1360 | // CATEGORY: QUICK_SETTINGS |
| 1361 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1362 | QS_BATTERY_TILE = 261; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1363 | |
| 1364 | // OPEN: Settings > Sound > Do not disturb > Visual interruptions |
| 1365 | // CATEGORY: SETTINGS |
| 1366 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1367 | NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1368 | |
| 1369 | // ACTION: Visual interruptions > No screen interuptions toggle |
| 1370 | // SUBTYPE: 0 is off, 1 is on |
| 1371 | // CATEGORY: SETTINGS |
| 1372 | // OS: N |
Julia Reynolds | d560729 | 2016-02-05 15:25:58 -0500 | [diff] [blame] | 1373 | ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1374 | |
| 1375 | // ACTION: Visual interruptions > No notification light toggle |
| 1376 | // SUBTYPE: 0 is off, 1 is on |
| 1377 | // CATEGORY: SETTINGS |
| 1378 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1379 | ACTION_ZEN_ALLOW_LIGHTS = 264; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1380 | |
| 1381 | // OPEN: Settings > Notifications > [App] > Topic Notifications |
| 1382 | // CATEGORY: SETTINGS |
| 1383 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1384 | NOTIFICATION_TOPIC_NOTIFICATION = 265; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1385 | |
| 1386 | // ACTION: Settings > Apps > Default Apps > Select different SMS app |
| 1387 | // PACKAGE: Selected SMS app |
| 1388 | // CATEGORY: SETTINGS |
| 1389 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1390 | ACTION_DEFAULT_SMS_APP_CHANGED = 266; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1391 | |
| 1392 | // OPEN: QS Color modification tile shown |
| 1393 | // ACTION: QS Color modification tile tapped |
| 1394 | // SUBTYPE: 0 is off, 1 is on |
| 1395 | // CATEGORY: QUICK_SETTINGS |
| 1396 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1397 | QS_COLOR_MATRIX = 267; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1398 | |
| 1399 | // OPEN: QS Custom tile shown |
| 1400 | // ACTION: QS Work Mode tile tapped |
| 1401 | // CATEGORY: QUICK_SETTINGS |
| 1402 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1403 | QS_CUSTOM = 268; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1404 | |
| 1405 | // ACTION: Visual interruptions > Never turn off the screen toggle |
| 1406 | // SUBTYPE: 0 is off, 1 is on |
| 1407 | // CATEGORY: SETTINGS |
| 1408 | // OS: N |
Julia Reynolds | d560729 | 2016-02-05 15:25:58 -0500 | [diff] [blame] | 1409 | ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269; |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1410 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1411 | // ACTION: Overview > Long-press task, drag to enter split-screen |
| 1412 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1413 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1414 | ACTION_WINDOW_DOCK_DRAG_DROP = 270; |
| 1415 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1416 | // ACTION: In App > Long-press Overview button to enter split-screen |
| 1417 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1418 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1419 | ACTION_WINDOW_DOCK_LONGPRESS = 271; |
| 1420 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1421 | // ACTION: In App > Swipe Overview button to enter split-screen |
| 1422 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1423 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1424 | ACTION_WINDOW_DOCK_SWIPE = 272; |
| 1425 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1426 | // ACTION: Launch profile-specific app > Confirm credentials |
| 1427 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1428 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1429 | PROFILE_CHALLENGE = 273; |
| 1430 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1431 | // OPEN: QS Battery detail panel |
| 1432 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1433 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1434 | QS_BATTERY_DETAIL = 274; |
| 1435 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1436 | // OPEN: Overview > History |
| 1437 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1438 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1439 | OVERVIEW_HISTORY = 275; |
| 1440 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1441 | // ACTION: Overview > Page by tapping Overview button |
| 1442 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1443 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1444 | ACTION_OVERVIEW_PAGE = 276; |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1445 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1446 | // ACTION: Overview > Select app |
| 1447 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1448 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1449 | ACTION_OVERVIEW_SELECT = 277; |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1450 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1451 | // ACTION: View emergency info |
| 1452 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1453 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1454 | ACTION_VIEW_EMERGENCY_INFO = 278; |
| 1455 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1456 | // ACTION: Edit emergency info activity |
| 1457 | // CATEGORY: SETTINGS |
| 1458 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1459 | ACTION_EDIT_EMERGENCY_INFO = 279; |
| 1460 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1461 | // ACTION: Edit emergency info field |
| 1462 | // CATEGORY: SETTINGS |
| 1463 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1464 | ACTION_EDIT_EMERGENCY_INFO_FIELD = 280; |
| 1465 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1466 | // ACTION: Add emergency contact |
| 1467 | // CATEGORY: SETTINGS |
| 1468 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1469 | ACTION_ADD_EMERGENCY_CONTACT = 281; |
| 1470 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1471 | // ACTION: Delete emergency contact |
| 1472 | // CATEGORY: SETTINGS |
| 1473 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1474 | ACTION_DELETE_EMERGENCY_CONTACT = 282; |
| 1475 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1476 | // ACTION: Call emergency contact |
| 1477 | // CATEGORY: SETTINGS |
| 1478 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1479 | ACTION_CALL_EMERGENCY_CONTACT = 283; |
Jason Monk | 9a4ce13 | 2016-01-21 15:27:17 -0500 | [diff] [blame] | 1480 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1481 | // OPEN: QS Data Saver tile shown |
| 1482 | // ACTION: QS Data Saver tile tapped |
| 1483 | // CATEGORY: QUICK_SETTINGS |
Jason Monk | 9a4ce13 | 2016-01-21 15:27:17 -0500 | [diff] [blame] | 1484 | QS_DATA_SAVER = 284; |
Jorim Jaggi | dd50c3f | 2016-02-04 14:55:07 -0800 | [diff] [blame] | 1485 | |
Robin Lee | 8c1306e | 2016-02-01 11:37:02 +0000 | [diff] [blame] | 1486 | // OPEN: Settings > Security > User credentials |
| 1487 | // CATEGORY: Settings |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1488 | // OS: N |
Robin Lee | 8c1306e | 2016-02-01 11:37:02 +0000 | [diff] [blame] | 1489 | USER_CREDENTIALS = 285; |
Jorim Jaggi | ea4a19f | 2016-02-03 21:31:27 -0800 | [diff] [blame] | 1490 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1491 | // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen |
| 1492 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1493 | // OS: N |
Jorim Jaggi | dd50c3f | 2016-02-04 14:55:07 -0800 | [diff] [blame] | 1494 | ACTION_WINDOW_UNDOCK_LONGPRESS = 286; |
Winson | 4232952 | 2016-02-05 10:39:46 -0800 | [diff] [blame] | 1495 | |
| 1496 | // Logged when the user scrolls through overview manually |
| 1497 | OVERVIEW_SCROLL = 287; |
| 1498 | |
| 1499 | // Logged when the overview times out automatically selecting an app |
| 1500 | OVERVIEW_SELECT_TIMEOUT = 288; |
| 1501 | |
| 1502 | // Logged when a user dismisses a task in overview |
| 1503 | OVERVIEW_DISMISS = 289; |
Julia Reynolds | b1a235f | 2016-02-09 12:57:02 -0500 | [diff] [blame] | 1504 | |
| 1505 | // Logged when the user modifying the notification importance slider. |
| 1506 | ACTION_MODIFY_IMPORTANCE_SLIDER = 290; |
| 1507 | |
| 1508 | // Logged when the user saves a modification to notification importance. Negative numbers |
| 1509 | // indicate the user lowered the importance; positive means they increased it. |
| 1510 | ACTION_SAVE_IMPORTANCE = 291; |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1511 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1512 | // ACTION: Long-press power button, then tap "Take bug report" option. |
| 1513 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1514 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1515 | ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292; |
| 1516 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1517 | // ACTION: Long-press power button, then long-press "Take bug report" option. |
| 1518 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1519 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1520 | ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293; |
| 1521 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1522 | // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report |
| 1523 | // CATEGORY: SETTINGS |
| 1524 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1525 | // Interactive bug report initiated from Settings. |
| 1526 | ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294; |
| 1527 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1528 | // ACTION: Settings -> Developer Options -> Take bug report -> Full report |
| 1529 | // CATEGORY: SETTINGS |
| 1530 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1531 | // Interactive bug report initiated from Settings. |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1532 | ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295; |
| 1533 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1534 | // ACTION: User tapped notification action to cancel a bug report |
| 1535 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1536 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1537 | ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296; |
| 1538 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1539 | // ACTION: User tapped notification action to launch bug report details screen |
| 1540 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1541 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1542 | ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297; |
| 1543 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1544 | // ACTION: User tapped notification action to take adition screenshot on bug report |
| 1545 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1546 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1547 | ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298; |
| 1548 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1549 | // ACTION: User tapped notification to share bug report |
| 1550 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1551 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1552 | ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299; |
| 1553 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1554 | // ACTION: User changed bug report name using the details screen |
| 1555 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1556 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1557 | ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300; |
| 1558 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1559 | // ACTION: User changed bug report title using the details screen |
| 1560 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1561 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1562 | ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301; |
| 1563 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1564 | // ACTION: User changed bug report description using the details screen |
| 1565 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1566 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1567 | ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302; |
| 1568 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1569 | // ACTION: User tapped Save in the bug report details screen. |
| 1570 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1571 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1572 | ACTION_BUGREPORT_DETAILS_SAVED = 303; |
| 1573 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1574 | // ACTION: User tapped Cancel in the bug report details screen. |
| 1575 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1576 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1577 | ACTION_BUGREPORT_DETAILS_CANCELED = 304; |
Jason Monk | 5732df4 | 2016-02-24 16:24:55 -0500 | [diff] [blame] | 1578 | |
| 1579 | // Tuner: Open/close calibrate dialog. |
| 1580 | TUNER_CALIBRATE_DISPLAY = 305; |
| 1581 | |
| 1582 | // Tuner: Open/close color and appearance. |
| 1583 | TUNER_COLOR_AND_APPEARANCE = 306; |
| 1584 | |
| 1585 | // Tuner: Apply calibrate dialog. |
| 1586 | ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307; |
| 1587 | |
| 1588 | // Tuner: Open/close night mode. |
| 1589 | TUNER_NIGHT_MODE = 308; |
| 1590 | |
| 1591 | // Tuner: Change night mode. |
| 1592 | ACTION_TUNER_NIGHT_MODE = 309; |
| 1593 | |
| 1594 | // Tuner: Change night mode auto. |
| 1595 | ACTION_TUNER_NIGHT_MODE_AUTO = 310; |
| 1596 | |
| 1597 | // Tuner: Change night mode adjust dark theme. |
| 1598 | ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311; |
| 1599 | |
| 1600 | // Tuner: Change night mode adjust tint. |
| 1601 | ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312; |
| 1602 | |
| 1603 | // Tuner: Change night mode adjust brightness. |
| 1604 | ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313; |
| 1605 | |
| 1606 | // Tuner: Change do not disturb in volume panel. |
| 1607 | ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314; |
| 1608 | |
| 1609 | // Tuner: Change do not disturb volume buttons shortcut. |
| 1610 | ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315; |
Adrian Roos | 9046222 | 2016-02-17 15:45:09 -0800 | [diff] [blame] | 1611 | |
| 1612 | // Logs the action the user takes when an app crashed. |
| 1613 | ACTION_APP_CRASH = 316; |
| 1614 | |
| 1615 | // Logs the action the user takes when an app ANR'd. |
| 1616 | ACTION_APP_ANR = 317; |
Winson | d934290 | 2016-02-25 10:18:33 -0800 | [diff] [blame] | 1617 | |
| 1618 | // Logged when a user double taps the overview button to launch the previous task |
| 1619 | OVERVIEW_LAUNCH_PREVIOUS_TASK = 318; |
Jorim Jaggi | 275561a | 2016-02-23 10:11:02 -0500 | [diff] [blame] | 1620 | |
| 1621 | // Logged when we execute an app transition. This indicates the total delay from startActivity |
| 1622 | // until the app transition is starting to animate, in milliseconds. |
| 1623 | APP_TRANSITION_DELAY_MS = 319; |
| 1624 | |
| 1625 | // Logged when we execute an app transition. This indicates the reason why the transition |
| 1626 | // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons. |
| 1627 | APP_TRANSITION_REASON = 320; |
| 1628 | |
| 1629 | // Logged when we execute an app transition and we drew a starting window. This indicates the |
| 1630 | // delay from startActivity until the starting window was drawn. |
| 1631 | APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321; |
| 1632 | |
| 1633 | // Logged when we execute an app transition and all windows of the app got drawn. This indicates |
| 1634 | // the delay from startActivity until all windows have been drawn. |
| 1635 | APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322; |
| 1636 | |
| 1637 | // Logged when we execute an app transition. This indicates the component name of the current |
| 1638 | // transition. |
| 1639 | APP_TRANSITION_COMPONENT_NAME = 323; |
| 1640 | |
| 1641 | // Logged when we execute an app transition. This indicates whether the process was already |
| 1642 | // running. |
| 1643 | APP_TRANSITION_PROCESS_RUNNING = 324; |
| 1644 | |
| 1645 | // Logged when we execute an app transition. This indicates the device uptime in seconds when |
| 1646 | // the transition was executed. |
| 1647 | APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325; |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1648 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1649 | // ACTION: app requested access to a scoped directory, user granted it. |
| 1650 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES |
| 1651 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1652 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1653 | ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326; |
| 1654 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1655 | // ACTION: app requested access to a scoped directory, user denied it. |
| 1656 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES |
| 1657 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1658 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1659 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327; |
| 1660 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1661 | // ACTION: app requested access to a scoped directory, user granted it. |
| 1662 | // PACKAGE: app that requested access |
| 1663 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1664 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1665 | ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328; |
| 1666 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1667 | // ACTION: app requested access to a scoped directory, user denied it. |
| 1668 | // PACKAGE: app that requested access. |
| 1669 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1670 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1671 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329; |
| 1672 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1673 | // ACTION: app requested access to a directory user has already been granted |
| 1674 | // access before. |
| 1675 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES. |
| 1676 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1677 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1678 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330; |
| 1679 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1680 | // ACTION: app requested access to a directory user has already been granted |
| 1681 | // access before. |
| 1682 | // PACKAGE: app that requested access. |
| 1683 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1684 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1685 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331; |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 1686 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1687 | // ACTION: Logged when the user slides a notification and reveals the gear |
| 1688 | // beneath it. |
| 1689 | // CATEGORY: NOTIFICATION |
| 1690 | // OS: N |
Mady Mellor | a41587b | 2016-02-11 18:43:06 -0800 | [diff] [blame] | 1691 | ACTION_REVEAL_GEAR = 332; |
| 1692 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1693 | // ACTION: Logged when the user taps on the gear beneath a notification. |
| 1694 | // CATEGORY: NOTIFICATION |
| 1695 | // OS: N |
Mady Mellor | a41587b | 2016-02-11 18:43:06 -0800 | [diff] [blame] | 1696 | ACTION_TOUCH_GEAR = 333; |
| 1697 | |
Ruben Brunk | e24b9a6 | 2016-02-16 21:38:24 -0800 | [diff] [blame] | 1698 | // Logs that the user has edited the enabled VR listeners. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1699 | // CATEGORY: SETTINGS |
| 1700 | // OS: N |
Ruben Brunk | e24b9a6 | 2016-02-16 21:38:24 -0800 | [diff] [blame] | 1701 | VR_MANAGE_LISTENERS = 334; |
| 1702 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1703 | // Settings -> Accessibility -> Click after pointer stops moving |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1704 | // CATEGORY: SETTINGS |
| 1705 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1706 | ACCESSIBILITY_TOGGLE_AUTOCLICK = 335; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1707 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1708 | // Settings -> Sound |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1709 | // CATEGORY: SETTINGS |
| 1710 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1711 | SOUND = 336; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1712 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1713 | // Settings -> Notifications -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1714 | // CATEGORY: SETTINGS |
| 1715 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1716 | CONFIGURE_NOTIFICATION = 337; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1717 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1718 | // Settings -> Wi-Fi -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1719 | // CATEGORY: SETTINGS |
| 1720 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1721 | CONFIGURE_WIFI = 338; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1722 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1723 | // Settings -> Display -> Display size |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1724 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1725 | DISPLAY_SCREEN_ZOOM = 339; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1726 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1727 | // Settings -> Display -> Font size |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1728 | // CATEGORY: SETTINGS |
| 1729 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1730 | ACCESSIBILITY_FONT_SIZE = 340; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1731 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1732 | // Settings -> Data usage -> Cellular/Wi-Fi data usage |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1733 | // CATEGORY: SETTINGS |
| 1734 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1735 | DATA_USAGE_LIST = 341; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1736 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1737 | // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1738 | // CATEGORY: SETTINGS |
| 1739 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1740 | BILLING_CYCLE = 342; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1741 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1742 | // DATA_USAGE_LIST -> Any item or App info -> Data usage |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1743 | // CATEGORY: SETTINGS |
| 1744 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1745 | APP_DATA_USAGE = 343; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1746 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1747 | // Settings -> Language & input -> Language |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1748 | // CATEGORY: SETTINGS |
| 1749 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1750 | USER_LOCALE_LIST = 344; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1751 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1752 | // Settings -> Language & input -> Virtual keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1753 | // CATEGORY: SETTINGS |
| 1754 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1755 | VIRTUAL_KEYBOARDS = 345; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1756 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1757 | // Settings -> Language & input -> Physical keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1758 | // CATEGORY: SETTINGS |
| 1759 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1760 | PHYSICAL_KEYBOARDS = 346; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1761 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1762 | // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1763 | // CATEGORY: SETTINGS |
| 1764 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1765 | ENABLE_VIRTUAL_KEYBOARDS = 347; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1766 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1767 | // Settings -> Data usage -> Data Saver |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1768 | // CATEGORY: SETTINGS |
| 1769 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1770 | DATA_SAVER_SUMMARY = 348; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1771 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1772 | // Settings -> Data usage -> Data Saver -> Unrestricted data access |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1773 | // CATEGORY: SETTINGS |
| 1774 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1775 | DATA_USAGE_UNRESTRICTED_ACCESS = 349; |
| 1776 | |
| 1777 | // Used for generic logging of Settings Preference Persistence, should not be used |
| 1778 | // outside SharedPreferencesLogger. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1779 | // CATEGORY: SETTINGS |
| 1780 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1781 | ACTION_GENERIC_PACKAGE = 350; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1782 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1783 | // Settings -> Apps -> Gear -> Special access |
| 1784 | SPECIAL_ACCESS = 351; |
| 1785 | |
Muyuan Li | a212999 | 2016-03-03 18:30:39 -0800 | [diff] [blame] | 1786 | // Logs that the user docks window via shortcut key. |
| 1787 | WINDOW_DOCK_SHORTCUTS = 352; |
| 1788 | |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1789 | // User already denied access to the request folder; action takes an integer |
| 1790 | // representing the folder's index on Environment.STANDARD_DIRECTORIES |
Felipe Leme | db892b8 | 2016-03-17 18:56:20 -0700 | [diff] [blame] | 1791 | // (or -2 for root access, or -1 or unknown directory). |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1792 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353; |
| 1793 | |
| 1794 | // User already denied access to the request folder; action pass package name |
| 1795 | // of calling package. |
| 1796 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354; |
| 1797 | |
| 1798 | // User denied access to the request folder and checked 'Do not ask again'; |
| 1799 | // 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] | 1800 | // (or -2 for root access, or -1 or unknown directory). |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1801 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355; |
| 1802 | |
| 1803 | // User denied access to the request folder and checked 'Do not ask again'; |
| 1804 | // action pass package name of calling package. |
| 1805 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356; |
| 1806 | |
Winson | 3b6ba1a | 2016-03-22 15:37:54 -0700 | [diff] [blame] | 1807 | // Logged when a user dismisses all task in overview |
| 1808 | OVERVIEW_DISMISS_ALL = 357; |
| 1809 | |
Jason Monk | 96defbe | 2016-03-29 16:51:03 -0400 | [diff] [blame] | 1810 | // Quick Settings -> Edit |
| 1811 | QS_EDIT = 358; |
| 1812 | |
| 1813 | // Quick Settings -> Edit -> Overflow -> Reset |
| 1814 | ACTION_QS_EDIT_RESET = 359; |
| 1815 | |
| 1816 | // QS -> Edit - Drag a tile out of the active tiles. |
| 1817 | // The _SPEC contains either the spec of the tile or |
| 1818 | // the package of the 3rd party app in the PKG field. |
| 1819 | ACTION_QS_EDIT_REMOVE_SPEC = 360; |
| 1820 | ACTION_QS_EDIT_REMOVE = 361; |
| 1821 | |
| 1822 | // QS -> Edit - Drag a tile into the active tiles. |
| 1823 | // The _SPEC contains either the spec of the tile or |
| 1824 | // the package of the 3rd party app in the PKG field. |
| 1825 | ACTION_QS_EDIT_ADD_SPEC = 362; |
| 1826 | ACTION_QS_EDIT_ADD = 363; |
| 1827 | |
| 1828 | // QS -> Edit - Drag a tile within the active tiles. |
| 1829 | // The _SPEC contains either the spec of the tile or |
| 1830 | // the package of the 3rd party app in the PKG field. |
| 1831 | ACTION_QS_EDIT_MOVE_SPEC = 364; |
| 1832 | ACTION_QS_EDIT_MOVE = 365; |
| 1833 | |
| 1834 | // Long-press on a QS tile. Tile spec in package field. |
| 1835 | ACTION_QS_LONG_PRESS = 366; |
| 1836 | |
Anna Galusza | dad131f | 2016-03-22 13:49:02 -0700 | [diff] [blame] | 1837 | // OPEN: SUW Welcome Screen -> Vision Settings |
| 1838 | // CATEGORY: SETTINGS |
| 1839 | // OS: N |
| 1840 | SUW_ACCESSIBILITY = 367; |
| 1841 | |
| 1842 | // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture |
| 1843 | // ACTION: New magnification gesture configuration is chosen |
| 1844 | // SUBTYPE: 0 is off, 1 is on |
| 1845 | // CATEGORY: SETTINGS |
| 1846 | // OS: N |
| 1847 | SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368; |
| 1848 | |
| 1849 | // OPEN: SUW Welcome Screen -> Vision Settings -> Font size |
| 1850 | // ACTION: New font size is chosen |
| 1851 | // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest |
| 1852 | // CATEGORY: SETTINGS |
| 1853 | // OS: N |
| 1854 | SUW_ACCESSIBILITY_FONT_SIZE = 369; |
| 1855 | |
| 1856 | // OPEN: SUW Welcome Screen -> Vision Settings -> Display size |
| 1857 | // ACTION: New display size is chosen |
| 1858 | // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest |
| 1859 | // CATEGORY: SETTINGS |
| 1860 | // OS: N |
| 1861 | SUW_ACCESSIBILITY_DISPLAY_SIZE = 370; |
| 1862 | |
| 1863 | // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack |
| 1864 | // ACTION: New screen reader configuration is chosen |
| 1865 | // SUBTYPE: 0 is off, 1 is on |
| 1866 | // CATEGORY: SETTINGS |
| 1867 | // OS: N |
| 1868 | SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371; |
| 1869 | |
Jason Monk | c362039 | 2016-03-30 15:46:03 -0400 | [diff] [blame] | 1870 | // ------- Begin N Settings conditionals ----- |
| 1871 | // Conditionals are the green bars at the top of the settings dashboard |
| 1872 | // All conditionals will have visible/hide events onResume/onPause |
| 1873 | // but they will also be used as extra ints in the |
| 1874 | // dismiss/expand/collapse/click/button events |
| 1875 | |
| 1876 | // swipe away conditional |
| 1877 | ACTION_SETTINGS_CONDITION_DISMISS = 372; |
| 1878 | |
| 1879 | // click on collapsed conditional or clicks expand button |
| 1880 | ACTION_SETTINGS_CONDITION_EXPAND = 373; |
| 1881 | |
| 1882 | // click collapse button on expanded conditional |
| 1883 | ACTION_SETTINGS_CONDITION_COLLAPSE = 374; |
| 1884 | |
| 1885 | // click main area of expanded conditional |
| 1886 | ACTION_SETTINGS_CONDITION_CLICK = 375; |
| 1887 | |
| 1888 | // click a direct button on expanded conditional |
| 1889 | ACTION_SETTINGS_CONDITION_BUTTON = 376; |
| 1890 | |
| 1891 | // Airplane mode on |
| 1892 | SETTINGS_CONDITION_AIRPLANE_MODE = 377; |
| 1893 | // AKA Data saver on |
| 1894 | SETTINGS_CONDITION_BACKGROUND_DATA = 378; |
| 1895 | // Battery saver on |
| 1896 | SETTINGS_CONDITION_BATTERY_SAVER = 379; |
| 1897 | // Cellular data off |
| 1898 | SETTINGS_CONDITION_CELLULAR_DATA = 380; |
| 1899 | // Do not disturb on |
| 1900 | SETTINGS_CONDITION_DND = 381; |
| 1901 | // Hotspot on |
| 1902 | SETTINGS_CONDITION_HOTSPOT = 382; |
| 1903 | // Work profile off |
| 1904 | SETTINGS_CONDITION_WORK_MODE = 383; |
| 1905 | |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1906 | // ------- Begin N Settings suggestions ----- |
| 1907 | // Since suggestions come from system apps, suggestions will |
| 1908 | // have generic constants and the package providing the suggestion |
| 1909 | // will be put in the package field. For suggestions in the Settings |
| 1910 | // package, the class name will be filled in instead (since settings |
| 1911 | // provides several suggetions). |
| 1912 | |
| 1913 | // Settings shown/hidden on main settings dashboard. |
| 1914 | // These are actually visibility events, but visible/hidden doesn't |
| 1915 | // take a package, so these are being logged as actions. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 1916 | ACTION_SHOW_SETTINGS_SUGGESTION = 384; |
| 1917 | ACTION_HIDE_SETTINGS_SUGGESTION = 385; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1918 | |
| 1919 | // Click on a suggestion. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 1920 | ACTION_SETTINGS_SUGGESTION = 386; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1921 | |
| 1922 | // Suggestion -> Overflow -> Remove. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 1923 | ACTION_SETTINGS_DISMISS_SUGGESTION = 387; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1924 | |
Jason Monk | 397df68 | 2016-03-28 15:48:34 -0400 | [diff] [blame] | 1925 | // Settings > Apps > Gear > Special Access > Premium SMS access |
| 1926 | PREMIUM_SMS_ACCESS = 388; |
| 1927 | |
Jorim Jaggi | 29379ec | 2016-04-11 23:43:42 -0700 | [diff] [blame] | 1928 | // Logged when the user resizes the docked stack. Arguments: |
| 1929 | // 0: Split 50:50 |
| 1930 | // 1: Docked smaller |
| 1931 | // 2: Docked larger |
| 1932 | ACTION_WINDOW_DOCK_RESIZE = 389; |
| 1933 | |
| 1934 | // User exits split-screen by dragging the divider to the side of the screen. Arguments |
| 1935 | // 0: Docked gets maximized |
| 1936 | // 1: Fullscreen gets maximized |
| 1937 | ACTION_WINDOW_UNDOCK_MAX = 390; |
| 1938 | |
| 1939 | // User tried to dock an unresizable app. |
| 1940 | ACTION_WINDOW_DOCK_UNRESIZABLE = 391; |
| 1941 | |
Julia Reynolds | 4d920ff | 2016-04-06 20:31:05 -0400 | [diff] [blame] | 1942 | // System UI Tuner > Other > Power notification controls |
| 1943 | TUNER_POWER_NOTIFICATION_CONTROLS = 392; |
| 1944 | |
| 1945 | // System UI Tuner > Other > Power notification controls > Toggle on/off |
| 1946 | ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393; |
| 1947 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1948 | // Action: user enable / disabled data saver using Settings |
| 1949 | // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle |
| 1950 | // VALUE: 1 for enabled, 0 for disabled |
| 1951 | // CATEGORY: SETTINGS |
| 1952 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 1953 | ACTION_DATA_SAVER_MODE = 394; |
| 1954 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1955 | // User whitelisted an app for Data Saver mode; action pass package name of app |
| 1956 | // Action: user enable / disabled data saver using Settings |
| 1957 | // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on |
| 1958 | // or |
| 1959 | // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on |
| 1960 | // VALUE: package name of APP |
| 1961 | // CATEGORY: SETTINGS |
| 1962 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 1963 | ACTION_DATA_SAVER_WHITELIST = 395; |
| 1964 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1965 | // User blacklisted an app for Data Saver mode; action pass package name of app |
| 1966 | // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off |
| 1967 | // VALUE: package name of APP |
| 1968 | // CATEGORY: SETTINGS |
| 1969 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 1970 | ACTION_DATA_SAVER_BLACKLIST = 396; |
| 1971 | |
Adrian Roos | ceeb04c | 2016-04-25 14:00:54 -0700 | [diff] [blame] | 1972 | // User opened a remote input view associated with a notification. Passes package name of app |
| 1973 | // that posted the notification. Note that this can also happen transiently during notification |
| 1974 | // reinflation. |
| 1975 | ACTION_REMOTE_INPUT_OPEN = 397; |
| 1976 | |
| 1977 | // User attempt to send data through a remote input view associated with a notification. |
| 1978 | // Passes package name of app that posted the notification. May succeed or fail. |
| 1979 | ACTION_REMOTE_INPUT_SEND = 398; |
| 1980 | |
| 1981 | // Failed attempt to send data through a remote input view associated with a |
| 1982 | // notification. Passes package name of app that posted the notification. |
| 1983 | ACTION_REMOTE_INPUT_FAIL = 399; |
| 1984 | |
| 1985 | // User closed a remote input view associated with a notification. Passes package name of app |
| 1986 | // that posted the notification. Note that this can also happen transiently during notification |
| 1987 | // reinflation. |
| 1988 | ACTION_REMOTE_INPUT_CLOSE = 400; |
| 1989 | |
Tony Mak | 7a5b17bb | 2016-04-29 10:27:48 +0100 | [diff] [blame] | 1990 | // OPEN: Settings > Accounts > Work profile settings |
| 1991 | // CATEGORY: SETTINGS |
| 1992 | ACCOUNTS_WORK_PROFILE_SETTINGS = 401; |
| 1993 | |
Jason Monk | 25118d1 | 2016-05-10 13:25:50 -0400 | [diff] [blame] | 1994 | // Settings -> Dev options -> Convert to file encryption |
| 1995 | CONVERT_FBE = 402; |
| 1996 | |
| 1997 | // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT... |
| 1998 | CONVERT_FBE_CONFIRM = 403; |
| 1999 | |
| 2000 | // Settings -> Dev options -> Running services |
| 2001 | RUNNING_SERVICES = 404; |
| 2002 | |
Jason Monk | a1f697f | 2016-05-06 15:09:44 -0400 | [diff] [blame] | 2003 | // The dialog shown by 3P intent to change current webview implementation. |
| 2004 | WEBVIEW_IMPLEMENTATION = 405; |
| 2005 | |
Julia Reynolds | 8f3e66f | 2016-05-12 10:33:47 -0400 | [diff] [blame] | 2006 | // Settings launched from expanded quick settings. |
| 2007 | ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406; |
| 2008 | |
Chris Wren | 698b170 | 2016-05-23 11:16:32 -0400 | [diff] [blame] | 2009 | // Notification expansion state toggled by the expand affordance. |
| 2010 | ACTION_NOTIFICATION_EXPANDER = 407; |
| 2011 | |
| 2012 | // Notification group expansion state toggled by the expand affordance. |
| 2013 | ACTION_NOTIFICATION_GROUP_EXPANDER = 408; |
| 2014 | |
Chris Wren | 7ee8418 | 2016-05-27 13:34:02 -0400 | [diff] [blame] | 2015 | |
Chris Wren | 6abeeb9 | 2016-05-26 14:44:38 -0400 | [diff] [blame] | 2016 | // Notification expansion state toggled by the expand gesture. |
| 2017 | ACTION_NOTIFICATION_GESTURE_EXPANDER = 409; |
| 2018 | |
| 2019 | // Notification group expansion state toggled by the expand gesture. |
| 2020 | ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410; |
| 2021 | |
Bhavik Singh | 3451da4 | 2016-06-01 18:25:59 -0700 | [diff] [blame] | 2022 | // User performs gesture that activates the ambient display |
| 2023 | // 1: Gesture performed is Nudge |
| 2024 | // 2: Gesture performed is Pickup |
| 2025 | // 4: Gesture performed is Double Tap |
| 2026 | ACTION_AMBIENT_GESTURE = 411; |
| 2027 | |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2028 | // ---- End N Constants, all N constants go above this line ---- |
| 2029 | |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2030 | // ------- Begin N App Disambig Shade ----- |
| 2031 | // Application disambig shade opened or closed with a featured app. |
| 2032 | // These are actually visibility events, but visible/hidden doesn't |
| 2033 | // take a package, so these are being logged as actions. |
| 2034 | // Package: Calling app on open, called app on close |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2035 | ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451; |
| 2036 | ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2037 | |
| 2038 | // Application disambig shade opened or closed without a featured app. |
| 2039 | // These are actually visibility events, but visible/hidden doesn't |
| 2040 | // take a package, so these are being logged as actions. |
| 2041 | // Package: Calling app on open, called app on close |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2042 | ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453; |
| 2043 | ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2044 | |
| 2045 | // User opens in an app by pressing “Always” in the application disambig shade. |
| 2046 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2047 | ACTION_APP_DISAMBIG_ALWAYS = 455; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2048 | |
| 2049 | // User opens in an app by pressing “Just Once” in the application disambig shade. |
| 2050 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2051 | ACTION_APP_DISAMBIG_JUST_ONCE = 456; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2052 | |
| 2053 | // User opens in an app by tapping on its name in the application disambig shade. |
| 2054 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2055 | ACTION_APP_DISAMBIG_TAP = 457; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2056 | |
Daniel Nishi | 010aa49 | 2016-05-11 09:42:24 -0700 | [diff] [blame] | 2057 | // OPEN: Settings > Internal storage > Storage manager |
| 2058 | // CATEGORY: SETTINGS |
| 2059 | STORAGE_MANAGER_SETTINGS = 458; |
| 2060 | |
Doris Ling | 5b2c0ad | 2016-05-25 14:03:14 -0700 | [diff] [blame] | 2061 | // OPEN: Settings -> Gestures |
| 2062 | // CATEGORY: SETTINGS |
| 2063 | SETTINGS_GESTURES = 459; |
| 2064 | |
Daniel Nishi | 597e67f | 2016-05-18 13:56:13 -0700 | [diff] [blame] | 2065 | // ------ Begin Deletion Helper ------ |
| 2066 | // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle |
| 2067 | // SUBTYPE: false is off, true is on |
| 2068 | // CATEGORY: SETTINGS |
| 2069 | ACTION_DELETION_SELECTION_PHOTOS = 460; |
Chris Wren | c6a9857 | 2016-06-02 15:11:48 -0400 | [diff] [blame] | 2070 | |
Daniel Nishi | 597e67f | 2016-05-18 13:56:13 -0700 | [diff] [blame] | 2071 | // ACTION: Settings > Storage > Free Up Space > Apps > Toggle |
| 2072 | // SUBTYPE: false is off, true is on |
| 2073 | // CATEGORY: SETTINGS |
| 2074 | ACTION_DELETION_SELECTION_ALL_APPS = 461; |
| 2075 | |
| 2076 | // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app |
| 2077 | // CATEGORY: SETTINGS |
| 2078 | // PACKAGE: Unchecked app |
| 2079 | ACTION_DELETION_SELECTION_APP_ON = 462; |
| 2080 | |
| 2081 | // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app |
| 2082 | // CATEGORY: SETTINGS |
| 2083 | // PACKAGE: Checked app |
| 2084 | ACTION_DELETION_SELECTION_APP_OFF = 463; |
| 2085 | |
| 2086 | // ACTION: Settings > Storage > Free Up Space > Apps > Click category |
| 2087 | // SUBTYPE: false is expanded, true is collapsed |
| 2088 | // CATEGORY: SETTINGS |
| 2089 | ACTION_DELETION_APPS_COLLAPSED = 464; |
| 2090 | |
| 2091 | // ACTION: Settings > Storage > Free Up Space > Downloads > Check On |
| 2092 | // SUBTYPE: false is off, true is on |
| 2093 | // CATEGORY: SETTINGS |
| 2094 | ACTION_DELETION_SELECTION_DOWNLOADS = 465; |
| 2095 | |
| 2096 | // ACTION: Settings > Storage > Free Up Space > Downloads > Click category |
| 2097 | // SUBTYPE: false is expanded, true is collapsed |
| 2098 | // CATEGORY: SETTINGS |
| 2099 | ACTION_DELETION_DOWNLOADS_COLLAPSED = 466; |
| 2100 | |
| 2101 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB |
| 2102 | // CATEGORY: SETTINGS |
| 2103 | ACTION_DELETION_HELPER_CLEAR = 467; |
| 2104 | |
| 2105 | // ACTION: Settings > Storage > Free Up Space > Cancel |
| 2106 | // CATEGORY: SETTINGS |
| 2107 | ACTION_DELETION_HELPER_CANCEL = 468; |
| 2108 | |
| 2109 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove |
| 2110 | // CATEGORY: SETTINGS |
| 2111 | ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469; |
| 2112 | |
| 2113 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel |
| 2114 | // CATEGORY: SETTINGS |
| 2115 | ACTION_DELETION_HELPER_REMOVE_CANCEL = 470; |
| 2116 | |
| 2117 | // Deletion helper encountered an error during package deletion. |
| 2118 | ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471; |
| 2119 | |
| 2120 | // Deletion helper encountered an error during downloads folder deletion. |
| 2121 | ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472; |
| 2122 | |
| 2123 | // Deletion helper encountered an error during photo and video deletion. |
| 2124 | ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473; |
| 2125 | |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2126 | // OPEN: Settings (root page if there are multiple tabs) |
| 2127 | // CATEGORY: SETTINGS |
| 2128 | DASHBOARD_CONTAINER = 474; |
| 2129 | |
| 2130 | // OPEN: Settings -> SUPPORT TAB |
| 2131 | // CATEGORY: SETTINGS |
| 2132 | SUPPORT_FRAGMENT = 475; |
| 2133 | |
| 2134 | // ACTION: Settings -> Select summary tab. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2135 | // CATEGORY: SETTINGS |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2136 | ACTION_SELECT_SUMMARY=476; |
| 2137 | |
| 2138 | // ACTION: Settings -> Select support tab. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2139 | // CATEGORY: SETTINGS |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2140 | ACTION_SELECT_SUPPORT_FRAGMENT = 477; |
| 2141 | |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2142 | // ACTION: Settings -> Support -> Tips & tricks |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2143 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2144 | ACTION_SUPPORT_TIPS_AND_TRICKS = 478; |
| 2145 | |
| 2146 | // ACTION: Settings -> Support -> Help & feedback |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2147 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2148 | ACTION_SUPPORT_HELP_AND_FEEDBACK = 479; |
| 2149 | |
| 2150 | // ACTION: Settings -> Support -> Sign in |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2151 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2152 | ACTION_SUPPORT_SIGN_IN = 480; |
| 2153 | |
| 2154 | // ACTION: Settings -> Support -> Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2155 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2156 | ACTION_SUPPORT_PHONE = 481; |
| 2157 | |
| 2158 | // ACTION: Settings -> Support -> Chat |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2159 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2160 | ACTION_SUPPORT_CHAT = 482; |
| 2161 | |
| 2162 | // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2163 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2164 | ACTION_SUPPORT_DISCLAIMER_CANCEL = 483; |
| 2165 | |
| 2166 | // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2167 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2168 | ACTION_SUPPORT_DISCLAIMER_OK = 484; |
| 2169 | |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2170 | // ACTION: Settings -> Support -> Toll-Free Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2171 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2172 | ACTION_SUPPORT_DAIL_TOLLFREE = 485; |
| 2173 | |
| 2174 | // ACTION: Settings -> Support -> "Travel Abroad" Button |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2175 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2176 | ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486; |
| 2177 | |
| 2178 | // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2179 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2180 | ACTION_SUPPORT_DIAL_TOLLED = 487; |
| 2181 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2182 | // OPEN: Settings > Display > Night Light |
Justin Klaassen | 911e889 | 2016-06-21 18:24:24 -0700 | [diff] [blame] | 2183 | // CATEGORY: SETTINGS |
| 2184 | NIGHT_DISPLAY_SETTINGS = 488; |
| 2185 | |
Daniel Nishi | ff69a4b | 2016-07-12 13:55:57 -0700 | [diff] [blame] | 2186 | // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager |
| 2187 | // SUBTYPE: false is off, true is on |
| 2188 | ACTION_TOGGLE_STORAGE_MANAGER = 489; |
| 2189 | |
Jason Monk | 484fd36 | 2016-07-13 15:24:32 -0400 | [diff] [blame] | 2190 | // Settings launched from collapsed quick settings. |
| 2191 | ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490; |
| 2192 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2193 | // OPEN: QS Night Light tile shown |
| 2194 | // ACTION: QS Night Light tile tapped |
Justin Klaassen | 1379090 | 2016-06-21 20:28:12 -0700 | [diff] [blame] | 2195 | // SUBTYPE: 0 is off, 1 is on |
| 2196 | // CATEGORY: QUICK_SETTINGS |
| 2197 | QS_NIGHT_DISPLAY = 491; |
| 2198 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2199 | // Night Light on |
| 2200 | SETTINGS_CONDITION_NIGHT_DISPLAY = 492; |
| 2201 | |
Doris Ling | 3c00afb | 2016-07-19 17:04:21 -0700 | [diff] [blame] | 2202 | // System navigation key up. |
| 2203 | ACTION_SYSTEM_NAVIGATION_KEY_UP = 493; |
| 2204 | |
| 2205 | // System navigation key down. |
| 2206 | ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494; |
| 2207 | |
Doris Ling | 6dd3e46 | 2016-08-04 13:17:27 -0700 | [diff] [blame] | 2208 | // OPEN: Settings > Display -> Ambient Display |
| 2209 | // CATEGORY: SETTINGS |
| 2210 | ACTION_AMBIENT_DISPLAY = 495; |
| 2211 | |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 2212 | // ---- End N-MR1 Constants, all N-MR1 constants go above this line ---- |
| 2213 | |
Clara Bayarri | c17a598 | 2016-04-15 12:26:47 +0100 | [diff] [blame] | 2214 | // ------- Begin N Keyboard Shortcuts Helper ----- |
| 2215 | // Keyboard Shortcuts Helper is opened/closed. |
Chris Wren | e7396ff | 2016-06-02 17:08:21 -0400 | [diff] [blame] | 2216 | KEYBOARD_SHORTCUTS_HELPER = 500; |
Clara Bayarri | c17a598 | 2016-04-15 12:26:47 +0100 | [diff] [blame] | 2217 | |
Philip P. Moltmann | 2e30126 | 2016-06-16 12:39:54 -0700 | [diff] [blame] | 2218 | // OPEN: Print Preview screen |
| 2219 | // Package: Package of app where print job is from |
| 2220 | PRINT_PREVIEW = 501; |
| 2221 | |
| 2222 | // OPEN: User expands full print job options shade in print preview. |
| 2223 | PRINT_JOB_OPTIONS = 502; |
| 2224 | |
| 2225 | // OPEN: “All Printers” screen for selecting printer |
| 2226 | // Subtype: # of printers listed |
| 2227 | PRINT_ALL_PRINTERS = 503; |
| 2228 | |
| 2229 | // OPEN: “Add Printers” screen for adding printers |
| 2230 | // Subtype: # of enabled print service listed |
| 2231 | PRINT_ADD_PRINTERS = 504; |
| 2232 | |
| 2233 | // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview) |
| 2234 | // Package: Package of print service. |
| 2235 | ACTION_PRINT = 505; |
| 2236 | |
| 2237 | // ACTION: User selects a printer from the dropdown in the print preview screen. This also |
| 2238 | // Count all ACTION_PRINTER_SELECT_ALL actions. |
| 2239 | // Package: Package of print service tied to printer |
| 2240 | ACTION_PRINTER_SELECT_DROPDOWN = 506; |
| 2241 | |
| 2242 | // ACTION: User selects a printer from the “All printers” screen. |
| 2243 | // Package: Package of print service tied to printer |
| 2244 | ACTION_PRINTER_SELECT_ALL = 507; |
| 2245 | |
| 2246 | // ACTION: User changes an option for the print job from print preview. |
| 2247 | // Subtype: 1: Copies |
| 2248 | // 2: Color mode |
| 2249 | // 3: Duplex mode |
| 2250 | // 4: Media (==Paper) size |
| 2251 | // 5: Orientation |
| 2252 | // 6: Page range |
| 2253 | // Package: Package of print service tied to printer |
| 2254 | ACTION_PRINT_JOB_OPTIONS = 508; |
| 2255 | |
| 2256 | // ACTION: User searches for printer from All Printers |
| 2257 | ACTION_PRINTER_SEARCH = 509; |
| 2258 | |
| 2259 | // ACTION: User selects “Add print service” button from All Printers |
| 2260 | ACTION_PRINT_SERVICE_ADD = 510; |
| 2261 | |
| 2262 | // ACTION: User Enables/Disables Print Service via any means. |
| 2263 | // Subtype: 0: Enabled |
| 2264 | // 1: Disabled |
| 2265 | ACTION_PRINT_SERVICE_TOGGLE = 511; |
| 2266 | |
| 2267 | // ACTION: User installs print recommended print service |
| 2268 | // Package: Package of print service |
| 2269 | ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512; |
| 2270 | |
Doris Ling | 88a6b16 | 2016-08-08 16:17:43 -0700 | [diff] [blame] | 2271 | // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support |
| 2272 | // SUBTYPE: sub settings classname |
| 2273 | ACTION_SETTING_HELP_AND_FEEDBACK = 513; |
| 2274 | |
Fan Zhang | 92c6038 | 2016-08-08 14:03:53 -0700 | [diff] [blame] | 2275 | // OPEN: Settings > Language & input > Personal dictionary (single locale) |
| 2276 | USER_DICTIONARY_SETTINGS = 514; |
| 2277 | |
| 2278 | // OPEN: Settings > Date & time > Select time zone |
| 2279 | ZONE_PICKER = 515; |
| 2280 | |
| 2281 | // OPEN: Settings > Security > Device administrators |
| 2282 | DEVICE_ADMIN_SETTINGS = 516; |
| 2283 | |
Mahaver Chopra | c8c97c2 | 2016-08-26 13:59:42 +0100 | [diff] [blame] | 2284 | // ACTION: Managed provisioning was launched to set this package as DPC app. |
| 2285 | // PACKAGE: DPC's package name. |
| 2286 | PROVISIONING_DPC_PACKAGE_NAME = 517; |
| 2287 | |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2288 | // ACTION: Managed provisioning triggered DPC installation. |
| 2289 | // PACKAGE: Package name of package which installed DPC. |
| 2290 | PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518; |
| 2291 | |
| 2292 | // ACTION: Logged when provisioning activity finishes. |
| 2293 | // TIME: Indicates time taken by provisioning activity to finish in MS. |
| 2294 | PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519; |
| 2295 | |
| 2296 | // ACTION: Logged when preprovisioning activity finishes. |
| 2297 | // TIME: Indicates time taken by preprovisioning activity to finish in MS. |
| 2298 | PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520; |
| 2299 | |
| 2300 | // ACTION: Logged when encrypt device activity finishes. |
| 2301 | // TIME: Indicates time taken by encrypt device activity to finish in MS. |
| 2302 | PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521; |
| 2303 | |
| 2304 | // ACTION: Logged when web activity finishes. |
| 2305 | // TIME: Indicates total time taken by web activity to finish in MS. |
| 2306 | PROVISIONING_WEB_ACTIVITY_TIME_MS = 522; |
| 2307 | |
| 2308 | // ACTION: Logged when trampoline activity finishes. |
| 2309 | // TIME: Indicates total time taken by trampoline activity to finish in MS. |
| 2310 | PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523; |
| 2311 | |
| 2312 | // ACTION: Logged when encryption activity finishes. |
| 2313 | // TIME: Indicates total time taken by post encryption activity to finish in MS. |
| 2314 | PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524; |
| 2315 | |
| 2316 | // ACTION: Logged when finalization activity finishes. |
| 2317 | // TIME: Indicates time taken by finalization activity to finish in MS. |
| 2318 | PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525; |
Mahaver Chopra | c8c97c2 | 2016-08-26 13:59:42 +0100 | [diff] [blame] | 2319 | |
Fan Zhang | 3bf54dd | 2016-08-23 16:10:25 -0700 | [diff] [blame] | 2320 | // OPEN: Settings Support > Phone/Chat -> Disclaimer |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2321 | DIALOG_SUPPORT_DISCLAIMER = 526; |
Fan Zhang | 3bf54dd | 2016-08-23 16:10:25 -0700 | [diff] [blame] | 2322 | |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2323 | // OPEN: Settings Support > Travel abroad |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2324 | DIALOG_SUPPORT_PHONE = 527; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2325 | |
| 2326 | // OPEN: Settings > Security > Factory Reset Protection dialog |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2327 | DIALOG_FRP = 528; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2328 | |
| 2329 | // OPEN: Settings > Custom list preference with confirmation message |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2330 | DIALOG_CUSTOM_LIST_CONFIRMATION = 529; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2331 | |
| 2332 | // OPEN: Settings > APN Editor > Error dialog |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2333 | DIALOG_APN_EDITOR_ERROR = 530; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2334 | |
| 2335 | // OPEN: Settings > Users > Edit owner info dialog |
Mahaver Chopra | a9a7932 | 2016-09-12 16:52:44 +0100 | [diff] [blame] | 2336 | DIALOG_OWNER_INFO_SETTINGS = 531; |
Fan Zhang | 9509418 | 2016-08-24 18:14:16 -0700 | [diff] [blame] | 2337 | |
Fan Zhang | c1352ae | 2016-09-16 12:46:11 -0700 | [diff] [blame] | 2338 | // OPEN: Settings > Security > Use one lock dialog |
| 2339 | DIALOG_UNIFICATION_CONFIRMATION = 532; |
| 2340 | |
| 2341 | // OPEN: Settings > Security > User Credential |
| 2342 | DIALOG_USER_CREDENTIAL = 533; |
| 2343 | |
| 2344 | // OPEN: Settings > Accounts > Remove account |
| 2345 | DIALOG_REMOVE_USER = 534; |
| 2346 | |
| 2347 | // OPEN: Settings > Accounts > Confirm auto sync dialog |
| 2348 | DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535; |
| 2349 | |
| 2350 | // OPEN: Settings > Apps > Dialog for running service details |
| 2351 | DIALOG_RUNNIGN_SERVICE = 536; |
| 2352 | |
| 2353 | // OPEN: Settings > Dialog for hiding home settings |
| 2354 | DIALOG_NO_HOME = 537; |
| 2355 | |
| 2356 | // OPEN: Settings > Bluetooth > Rename this device |
| 2357 | DIALOG_BLUETOOTH_RENAME = 538; |
| 2358 | |
| 2359 | // OPEN: Settings > Bluetooth > Paired device profile |
| 2360 | DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539; |
| 2361 | |
| 2362 | // OPEN: Settings > Battery optimization > details for app |
| 2363 | DIALOG_HIGH_POWER_DETAILS = 540; |
| 2364 | |
| 2365 | // OPEN: Settings > Keyboard > Show keyboard layout dialog |
| 2366 | DIALOG_KEYBOARD_LAYOUT = 541; |
| 2367 | |
| 2368 | // OPEN: Settings > Wifi > WPS Setup dialog |
| 2369 | DIALOG_WPS_SETUP = 542; |
| 2370 | |
| 2371 | // OPEN: Settings > WIFI Scan permission dialog |
| 2372 | DIALOG_WIFI_SCAN_MODE = 543; |
| 2373 | |
| 2374 | // OPEN: Settings > WIFI Setup > Skip Wifi dialog |
| 2375 | DIALOG_WIFI_SKIP = 544; |
| 2376 | |
| 2377 | // OPEN: Settings > Wireless > VPN > Config dialog |
| 2378 | DIALOG_LEGACY_VPN_CONFIG = 545; |
| 2379 | |
| 2380 | // OPEN: Settings > Wireless > VPN > Config dialog for app |
| 2381 | DIALOG_VPN_APP_CONFIG = 546; |
| 2382 | |
| 2383 | // OPEN: Settings > Wireless > VPN > Cannot connect dialog |
| 2384 | DIALOG_VPN_CANNOT_CONNECT = 547; |
| 2385 | |
| 2386 | // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog |
| 2387 | DIALOG_VPN_REPLACE_EXISTING = 548; |
| 2388 | |
| 2389 | // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog |
| 2390 | DIALOG_BILLING_CYCLE = 549; |
| 2391 | |
| 2392 | // OPEN: Settings > Billing cycle > Edit data limit/warning dialog |
| 2393 | DIALOG_BILLING_BYTE_LIMIT = 550; |
| 2394 | |
| 2395 | // OPEN: Settings > Billing cycle > turn on data limit dialog |
| 2396 | DIALOG_BILLING_CONFIRM_LIMIT = 551; |
| 2397 | |
| 2398 | // OPEN: Settings > Service > Turn off notification access dialog |
| 2399 | DIALOG_DISABLE_NOTIFICATION_ACCESS = 552; |
| 2400 | |
| 2401 | // OPEN: Settings > Sound > Use personal sound for work profile dialog |
| 2402 | DIALOG_UNIFY_SOUND_SETTINGS = 553; |
| 2403 | |
| 2404 | // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted. |
| 2405 | DIALOG_ZEN_ACCESS_GRANT = 554; |
| 2406 | |
| 2407 | // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked. |
| 2408 | DIALOG_ZEN_ACCESS_REVOKE = 555; |
| 2409 | |
| 2410 | // OPEN: Settings > Zen mode > Dialog that picks time for zen mode. |
| 2411 | DIALOG_ZEN_TIMEPICKER = 556; |
| 2412 | |
| 2413 | // OPEN: Settings > Apps > Dialog that informs user to allow service access for app. |
| 2414 | DIALOG_SERVICE_ACCESS_WARNING = 557; |
| 2415 | |
| 2416 | // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data) |
| 2417 | DIALOG_APP_INFO_ACTION = 558; |
| 2418 | |
| 2419 | // OPEN: Settings > Storage > Dialog for forgetting a storage device |
| 2420 | DIALOG_VOLUME_FORGET = 559; |
| 2421 | |
| 2422 | // OPEN: Settings > Storage > Dialog warning that a volume is slow |
| 2423 | DIALOG_VOLUME_SLOW_WARNING = 560; |
| 2424 | |
| 2425 | // OPEN: Settings > Storage > Dialog for initializing a volume |
| 2426 | DIALOG_VOLUME_INIT = 561; |
| 2427 | |
| 2428 | // OPEN: Settings > Storage > Dialog for unmounting a volume |
| 2429 | DIALOG_VOLUME_UNMOUNT = 562; |
| 2430 | |
| 2431 | // OPEN: Settings > Storage > Dialog for renaming a volume |
| 2432 | DIALOG_VOLUME_RENAME = 563; |
| 2433 | |
| 2434 | // OPEN: Settings > Storage > Dialog for clear cache |
| 2435 | DIALOG_STORAGE_CLEAR_CACHE = 564; |
| 2436 | |
| 2437 | // OPEN: Settings > Storage > Dialog for system info |
| 2438 | DIALOG_STORAGE_SYSTEM_INFO = 565; |
| 2439 | |
| 2440 | // OPEN: Settings > Storage > Dialog for other info |
| 2441 | DIALOG_STORAGE_OTHER_INFO = 566; |
| 2442 | |
| 2443 | // OPEN: Settings > Storage > Dialog for user info |
| 2444 | DIALOG_STORAGE_USER_INFO = 567; |
| 2445 | |
| 2446 | // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon. |
| 2447 | DIALOG_FINGERPRINT_ICON_TOUCH = 568; |
| 2448 | |
| 2449 | // OPEN: Settings > Add fingerprint > Error dialog |
| 2450 | DIALOG_FINGERPINT_ERROR = 569; |
| 2451 | |
| 2452 | // OPEN: Settings > Fingerprint > Rename or delete dialog |
| 2453 | DIALOG_FINGERPINT_EDIT = 570; |
| 2454 | |
| 2455 | // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint |
| 2456 | DIALOG_FINGERPINT_DELETE_LAST = 571; |
| 2457 | |
| 2458 | // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup. |
| 2459 | DIALOG_FINGERPRINT_CANCEL_SETUP = 572; |
| 2460 | |
| 2461 | // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely. |
| 2462 | DIALOG_FINGERPRINT_SKIP_SETUP = 573; |
| 2463 | |
Fan Zhang | 5e9f69c | 2016-09-19 17:44:39 -0700 | [diff] [blame] | 2464 | // OPEN: Settings > Proxy Selector error dialog |
| 2465 | DIALOG_PROXY_SELECTOR_ERROR = 574; |
| 2466 | |
| 2467 | // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog |
| 2468 | DIALOG_WIFI_P2P_DISCONNECT = 575; |
| 2469 | |
| 2470 | // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog |
| 2471 | DIALOG_WIFI_P2P_CANCEL_CONNECT = 576; |
| 2472 | |
| 2473 | // OPEN: Settings > Wifi > P2P Settings > Rename dialog |
| 2474 | DIALOG_WIFI_P2P_RENAME = 577; |
| 2475 | |
| 2476 | // OPEN: Settings > Wifi > P2P Settings > Forget group dialog |
| 2477 | DIALOG_WIFI_P2P_DELETE_GROUP = 578; |
| 2478 | |
| 2479 | // OPEN: Settings > APN > Restore default dialog |
| 2480 | DIALOG_APN_RESTORE_DEFAULT = 579; |
| 2481 | |
| 2482 | // OPEN: Settings > Dream > When to dream dialog |
| 2483 | DIALOG_DREAM_START_DELAY = 580; |
| 2484 | |
| 2485 | // OPEN: Settings > Encryption interstitial accessibility warning dialog |
| 2486 | DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581; |
| 2487 | |
| 2488 | // OPEN: Settings > Tether > AP setting dialog |
| 2489 | DIALOG_AP_SETTINGS = 582; |
| 2490 | |
| 2491 | // OPEN: Settings > Acessibility > Enable accessiblity service dialog |
| 2492 | DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583; |
| 2493 | |
| 2494 | // OPEN: Settings > Acessibility > Disable accessiblity service dialog |
| 2495 | DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584; |
| 2496 | |
| 2497 | // OPEN: Settings > Account > Remove account dialog |
| 2498 | DIALOG_ACCOUNT_SYNC_REMOVE = 585; |
| 2499 | |
| 2500 | // OPEN: Settings > Account > Remove account failed dialog |
| 2501 | DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586; |
| 2502 | |
| 2503 | // OPEN: Settings > Account > Cannot do onetime sync dialog |
| 2504 | DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587; |
| 2505 | |
| 2506 | // OPEN: Settings > Display > Night light > Set start time dialog |
| 2507 | DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588; |
| 2508 | |
| 2509 | // OPEN: Settings > Display > Night light > Set end time dialog |
| 2510 | DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589; |
| 2511 | |
| 2512 | // OPEN: Settings > User > Edit info dialog |
| 2513 | DIALOG_USER_EDIT = 590; |
| 2514 | |
| 2515 | // OPEN: Settings > User > Confirm remove dialog |
| 2516 | DIALOG_USER_REMOVE = 591; |
| 2517 | |
| 2518 | // OPEN: Settings > User > Enable calling dialog |
| 2519 | DIALOG_USER_ENABLE_CALLING = 592; |
| 2520 | |
| 2521 | // OPEN: Settings > User > Enable calling and sms dialog |
| 2522 | DIALOG_USER_ENABLE_CALLING_AND_SMS = 593; |
| 2523 | |
| 2524 | // OPEN: Settings > User > Cannot manage device message dialog |
| 2525 | DIALOG_USER_CANNOT_MANAGE = 594; |
| 2526 | |
| 2527 | // OPEN: Settings > User > Add user dialog |
| 2528 | DIALOG_USER_ADD = 595; |
| 2529 | |
| 2530 | // OPEN: Settings > User > Setup user dialog |
| 2531 | DIALOG_USER_SETUP = 596; |
| 2532 | |
| 2533 | // OPEN: Settings > User > Setup profile dialog |
| 2534 | DIALOG_USER_SETUP_PROFILE = 597; |
| 2535 | |
| 2536 | // OPEN: Settings > User > Choose user type dialog |
| 2537 | DIALOG_USER_CHOOSE_TYPE = 598; |
| 2538 | |
| 2539 | // OPEN: Settings > User > Need lockscreen dialog |
| 2540 | DIALOG_USER_NEED_LOCKSCREEN = 599; |
| 2541 | |
| 2542 | // OPEN: Settings > User > Confirm exit guest mode dialog |
| 2543 | DIALOG_USER_CONFIRM_EXIT_GUEST = 600; |
| 2544 | |
| 2545 | // OPEN: Settings > User > Edit user profile dialog |
| 2546 | DIALOG_USER_EDIT_PROFILE = 601; |
| 2547 | |
| 2548 | // OPEN: Settings > Wifi > Saved AP > Edit dialog |
| 2549 | DIALOG_WIFI_SAVED_AP_EDIT = 602; |
| 2550 | |
| 2551 | // OPEN: Settings > Wifi > Edit AP dialog |
| 2552 | DIALOG_WIFI_AP_EDIT = 603; |
| 2553 | |
| 2554 | // OPEN: Settings > Wifi > PBC Config dialog |
| 2555 | DIALOG_WIFI_PBC = 604; |
| 2556 | |
| 2557 | // OPEN: Settings > Wifi > Display pin dialog |
| 2558 | DIALOG_WIFI_PIN = 605; |
| 2559 | |
| 2560 | // OPEN: Settings > Wifi > Write config to NFC dialog |
| 2561 | DIALOG_WIFI_WRITE_NFC = 606; |
Fan Zhang | 04c2035 | 2016-09-23 12:11:15 -0700 | [diff] [blame] | 2562 | // OPEN: Settings > Date > Date picker dialog |
| 2563 | DIALOG_DATE_PICKER = 607; |
| 2564 | |
| 2565 | // OPEN: Settings > Date > Time picker dialog |
| 2566 | DIALOG_TIME_PICKER = 608; |
| 2567 | |
| 2568 | // OPEN: Settings > Wireless > Manage wireless plan dialog |
| 2569 | DIALOG_MANAGE_MOBILE_PLAN = 609; |
Fan Zhang | 5e9f69c | 2016-09-19 17:44:39 -0700 | [diff] [blame] | 2570 | |
Mahaver Chopra | a12b487 | 2016-09-28 16:19:36 +0100 | [diff] [blame] | 2571 | // ACTION: Logs network type of the device while provisioning |
Mahaver Chopra | 2b0efb0 | 2016-09-15 18:57:09 +0100 | [diff] [blame] | 2572 | PROVISIONING_NETWORK_TYPE = 610; |
| 2573 | |
Mahaver Chopra | a12b487 | 2016-09-28 16:19:36 +0100 | [diff] [blame] | 2574 | // ACTION: Logs action which triggered provisioning. |
| 2575 | PROVISIONING_ACTION = 611; |
| 2576 | |
Mahaver Chopra | ab28207 | 2016-10-06 19:19:23 +0100 | [diff] [blame] | 2577 | // ACTION: Logs extra passed by the dpc while provisioning. |
| 2578 | PROVISIONING_EXTRA = 612; |
| 2579 | |
Salvador Martinez | 64867c1 | 2016-10-14 15:25:09 -0700 | [diff] [blame] | 2580 | // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog |
| 2581 | BLUETOOTH_DIALOG_FRAGMENT = 613; |
| 2582 | |
Mahaver Chopra | 667ae0a | 2016-10-14 14:08:36 +0100 | [diff] [blame] | 2583 | // ACTION: Logs provisioning started by zero touch. |
| 2584 | PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614; |
| 2585 | |
| 2586 | // ACTION: Logs provisioning started by NFC bump. |
| 2587 | PROVISIONING_ENTRY_POINT_NFC = 615; |
| 2588 | |
| 2589 | // ACTION: Logs provisioning started using QR code. |
| 2590 | PROVISIONING_ENTRY_POINT_QR_CODE = 616; |
| 2591 | |
| 2592 | // ACTION: Logs provisioning started using adb. |
| 2593 | PROVISIONING_ENTRY_POINT_ADB = 617; |
| 2594 | |
| 2595 | // ACTION: Logs provisioning started by trusted source. |
| 2596 | PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618; |
| 2597 | |
Mahaver Chopra | cc7176f | 2016-10-26 17:16:19 +0100 | [diff] [blame] | 2598 | // ACTION: Logged when copy account task finishes. |
| 2599 | // TIME: Indicates time taken by copy account task to finish in MS. |
| 2600 | PROVISIONING_COPY_ACCOUNT_TASK_MS = 619; |
| 2601 | |
| 2602 | // ACTION: Logged when create profile task finishes. |
| 2603 | // TIME: Indicates time taken by create profile task to finish in MS. |
| 2604 | PROVISIONING_CREATE_PROFILE_TASK_MS = 620; |
| 2605 | |
| 2606 | // ACTION: Logged when start profile task finishes. |
| 2607 | // TIME: Indicates time taken by start profile task to finish in MS. |
| 2608 | PROVISIONING_START_PROFILE_TASK_MS = 621; |
| 2609 | |
| 2610 | // ACTION: Logged when download package task finishes. |
| 2611 | // TIME: Indicates time taken by download package task to finish in MS. |
| 2612 | PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622; |
| 2613 | |
| 2614 | // ACTION: Logged when install package task finishes. |
| 2615 | // TIME: Indicates time taken by install package task to finish in MS. |
| 2616 | PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623; |
| 2617 | |
| 2618 | // ACTION: User cancelled provisioning. |
| 2619 | PROVISIONING_CANCELLED = 624; |
| 2620 | |
| 2621 | // ACTION: Logged when provisioning throws an error. |
| 2622 | PROVISIONING_ERROR = 625; |
| 2623 | |
| 2624 | // ACTION: Logs the status of copying user account during provisioning. |
| 2625 | PROVISIONING_COPY_ACCOUNT_STATUS = 626; |
| 2626 | |
| 2627 | // ACTION: Logs the end to end time taken by all provisioning tasks. |
| 2628 | PROVISIONING_TOTAL_TASK_TIME_MS = 627; |
| 2629 | |
Philip P. Moltmann | 2e30126 | 2016-06-16 12:39:54 -0700 | [diff] [blame] | 2630 | // ---- End O Constants, all O constants go above this line ---- |
| 2631 | |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 2632 | // Add new aosp constants above this line. |
| 2633 | // END OF AOSP CONSTANTS |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 2634 | } |
| 2635 | } |