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 |
| 692 | // CATEGORY: SETTINGS |
| 693 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 694 | ACTION_WIFI_CONNECT = 135; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 695 | |
| 696 | // ACTION: Settings > Wi-Fi > Overflow > Refresh |
| 697 | // CATEGORY: SETTINGS |
| 698 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 699 | ACTION_WIFI_FORCE_SCAN = 136; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 700 | |
| 701 | // ACTION: Settings > Wi-Fi > [Long press network] > Forget network |
| 702 | // CATEGORY: SETTINGS |
| 703 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 704 | ACTION_WIFI_FORGET = 137; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 705 | |
| 706 | // ACTION: Settings > Wi-Fi > Toggle off |
| 707 | // CATEGORY: SETTINGS |
| 708 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 709 | ACTION_WIFI_OFF = 138; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 710 | |
| 711 | // ACTION: Settings > Wi-Fi > Toggle on |
| 712 | // CATEGORY: SETTINGS |
| 713 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 714 | ACTION_WIFI_ON = 139; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 715 | |
| 716 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 717 | MANAGE_PERMISSIONS = 140; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 718 | |
| 719 | // OPEN: Settings > Sound & notification > DND > Priority only allows |
| 720 | // CATEGORY: SETTINGS |
| 721 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 722 | NOTIFICATION_ZEN_MODE_PRIORITY = 141; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 723 | |
| 724 | // OPEN: Settings > Sound & notification > DND > Automatic rules |
| 725 | // CATEGORY: SETTINGS |
| 726 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 727 | NOTIFICATION_ZEN_MODE_AUTOMATION = 142; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 728 | |
| 729 | // OPEN: Settings > Apps > Configure apps > App links |
| 730 | // CATEGORY: SETTINGS |
| 731 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 732 | MANAGE_DOMAIN_URLS = 143; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 733 | |
| 734 | // OPEN: Settings > Sound & notification > DND > [Time based rule] |
| 735 | // CATEGORY: SETTINGS |
| 736 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 737 | NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 738 | |
| 739 | // OPEN: Settings > Sound & notification > DND > [External rule] |
| 740 | // CATEGORY: SETTINGS |
| 741 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 742 | NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 743 | |
| 744 | // OPEN: Settings > Sound & notification > DND > [Event rule] |
| 745 | // CATEGORY: SETTINGS |
| 746 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 747 | NOTIFICATION_ZEN_MODE_EVENT_RULE = 146; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 748 | |
| 749 | // ACTION: App notification settings > Block Notifications |
| 750 | // CATEGORY: SETTINGS |
| 751 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 752 | ACTION_BAN_APP_NOTES = 147; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 753 | |
| 754 | // ACTION: Notification shade > Dismiss all button |
| 755 | // CATEGORY: NOTIFICATION |
| 756 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 757 | ACTION_DISMISS_ALL_NOTES = 148; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 758 | |
| 759 | // OPEN: QS Do Not Disturb detail panel |
| 760 | // CATEGORY: QUICK_SETTINGS |
| 761 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 762 | QS_DND_DETAILS = 149; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 763 | |
| 764 | // OPEN: QS Bluetooth detail panel |
| 765 | // CATEGORY: QUICK_SETTINGS |
| 766 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 767 | QS_BLUETOOTH_DETAILS = 150; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 768 | |
| 769 | // OPEN: QS Cast detail panel |
| 770 | // CATEGORY: QUICK_SETTINGS |
| 771 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 772 | QS_CAST_DETAILS = 151; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 773 | |
| 774 | // OPEN: QS Wi-Fi detail panel |
| 775 | // CATEGORY: QUICK_SETTINGS |
| 776 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 777 | QS_WIFI_DETAILS = 152; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 778 | |
| 779 | // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle |
| 780 | // SUBTYPE: 0 is off, 1 is on |
| 781 | // CATEGORY: QUICK_SETTINGS |
| 782 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 783 | QS_WIFI_TOGGLE = 153; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 784 | |
| 785 | // ACTION: QS Bluetooth detail panel > Bluetooth toggle |
| 786 | // SUBTYPE: 0 is off, 1 is on |
| 787 | // CATEGORY: QUICK_SETTINGS |
| 788 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 789 | QS_BLUETOOTH_TOGGLE = 154; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 790 | |
| 791 | // ACTION: QS Cellular detail panel > Cellular toggle |
| 792 | // SUBTYPE: 0 is off, 1 is on |
| 793 | // CATEGORY: QUICK_SETTINGS |
| 794 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 795 | QS_CELLULAR_TOGGLE = 155; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 796 | |
| 797 | // ACTION: QS User list panel > Select different user |
| 798 | // CATEGORY: QUICK_SETTINGS |
| 799 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 800 | QS_SWITCH_USER = 156; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 801 | |
| 802 | // ACTION: QS Cast detail panel > Select cast device |
| 803 | // CATEGORY: QUICK_SETTINGS |
| 804 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 805 | QS_CAST_SELECT = 157; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 806 | |
| 807 | // ACTION: QS Cast detail panel > Disconnect cast device |
| 808 | // CATEGORY: QUICK_SETTINGS |
| 809 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 810 | QS_CAST_DISCONNECT = 158; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 811 | |
| 812 | // ACTION: Settings > Bluetooth > Toggle |
| 813 | // SUBTYPE: 0 is off, 1 is on |
| 814 | // CATEGORY: SETTINGS |
| 815 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 816 | ACTION_BLUETOOTH_TOGGLE = 159; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 817 | |
| 818 | // ACTION: Settings > Bluetooth > Overflow > Refresh |
| 819 | // CATEGORY: SETTINGS |
| 820 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 821 | ACTION_BLUETOOTH_SCAN = 160; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 822 | |
| 823 | // ACTION: Settings > Bluetooth > Overflow > Rename this device |
| 824 | // CATEGORY: SETTINGS |
| 825 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 826 | ACTION_BLUETOOTH_RENAME = 161; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 827 | |
| 828 | // ACTION: Settings > Bluetooth > Overflow > Show received files |
| 829 | // CATEGORY: SETTINGS |
| 830 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 831 | ACTION_BLUETOOTH_FILES = 162; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 832 | |
| 833 | // ACTION: QS DND details panel > Increase / Decrease exit time |
| 834 | // SUBTYPE: true is increase, false is decrease |
| 835 | // CATEGORY: QUICK_SETTINGS |
| 836 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 837 | QS_DND_TIME = 163; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 838 | |
| 839 | // ACTION: QS DND details panel > [Exit condition] |
| 840 | // CATEGORY: QUICK_SETTINGS |
| 841 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 842 | QS_DND_CONDITION_SELECT = 164; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 843 | |
| 844 | // ACTION: QS DND details panel > [DND mode] |
| 845 | // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only |
| 846 | // CATEGORY: QUICK_SETTINGS |
| 847 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 848 | QS_DND_ZEN_SELECT = 165; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 849 | |
| 850 | // ACTION: QS DND detail panel > DND toggle |
| 851 | // SUBTYPE: 0 is off, 1 is on |
| 852 | // CATEGORY: QUICK_SETTINGS |
| 853 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 854 | QS_DND_TOGGLE = 166; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 855 | |
| 856 | // ACTION: DND Settings > Priority only allows > Reminder toggle |
| 857 | // SUBTYPE: 0 is off, 1 is on |
| 858 | // CATEGORY: SETTINGS |
| 859 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 860 | ACTION_ZEN_ALLOW_REMINDERS = 167; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 861 | |
| 862 | // ACTION: DND Settings > Priority only allows > Event toggle |
| 863 | // SUBTYPE: 0 is off, 1 is on |
| 864 | // CATEGORY: SETTINGS |
| 865 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 866 | ACTION_ZEN_ALLOW_EVENTS = 168; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 867 | |
| 868 | // ACTION: DND Settings > Priority only allows > Messages |
| 869 | // SUBTYPE: 0 is off, 1 is on |
| 870 | // CATEGORY: SETTINGS |
| 871 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 872 | ACTION_ZEN_ALLOW_MESSAGES = 169; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 873 | |
| 874 | // ACTION: DND Settings > Priority only allows > Calls |
| 875 | // SUBTYPE: 0 is off, 1 is on |
| 876 | // CATEGORY: SETTINGS |
| 877 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 878 | ACTION_ZEN_ALLOW_CALLS = 170; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 879 | |
| 880 | // ACTION: DND Settings > Priority only allows > Repeat callers toggle |
| 881 | // SUBTYPE: 0 is off, 1 is on |
| 882 | // CATEGORY: SETTINGS |
| 883 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 884 | ACTION_ZEN_ALLOW_REPEAT_CALLS = 171; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 885 | |
| 886 | // ACTION: DND Settings > Automatic rules > Add rule |
| 887 | // CATEGORY: SETTINGS |
| 888 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 889 | ACTION_ZEN_ADD_RULE = 172; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 890 | |
| 891 | // ACTION: DND Settings > Automatic rules > Add rule > OK |
| 892 | // CATEGORY: SETTINGS |
| 893 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 894 | ACTION_ZEN_ADD_RULE_OK = 173; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 895 | |
| 896 | // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule |
| 897 | // CATEGORY: SETTINGS |
| 898 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 899 | ACTION_ZEN_DELETE_RULE = 174; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 900 | |
| 901 | // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete |
| 902 | // CATEGORY: SETTINGS |
| 903 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 904 | ACTION_ZEN_DELETE_RULE_OK = 175; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 905 | |
| 906 | // ACTION: DND Settings > Automatic rules > [Rule] > Toggle |
| 907 | // SUBTYPE: 0 is off, 1 is on |
| 908 | // CATEGORY: SETTINGS |
| 909 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 910 | ACTION_ZEN_ENABLE_RULE = 176; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 911 | |
| 912 | // ACTION: Settings > More > Airplane mode toggle |
| 913 | // SUBTYPE: 0 is off, 1 is on |
| 914 | // CATEGORY: SETTINGS |
| 915 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 916 | ACTION_AIRPLANE_TOGGLE = 177; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 917 | |
| 918 | // ACTION: Settings > Data usage > Cellular data toggle |
| 919 | // SUBTYPE: 0 is off, 1 is on |
| 920 | // CATEGORY: SETTINGS |
| 921 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 922 | ACTION_CELL_DATA_TOGGLE = 178; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 923 | |
| 924 | // OPEN: Settings > Sound & notification > Notification access |
| 925 | // CATEGORY: SETTINGS |
| 926 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 927 | NOTIFICATION_ACCESS = 179; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 928 | |
| 929 | // OPEN: Settings > Sound & notification > Do Not Disturb access |
| 930 | // CATEGORY: SETTINGS |
| 931 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 932 | NOTIFICATION_ZEN_MODE_ACCESS = 180; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 933 | |
| 934 | // OPEN: Settings > Apps > Configure apps > Default Apps |
| 935 | // CATEGORY: SETTINGS |
| 936 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 937 | APPLICATIONS_DEFAULT_APPS = 181; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 938 | |
| 939 | // OPEN: Settings > Internal storage > Apps storage |
| 940 | // CATEGORY: SETTINGS |
| 941 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 942 | APPLICATIONS_STORAGE_APPS = 182; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 943 | |
| 944 | // OPEN: Settings > Security > Usage access |
| 945 | // CATEGORY: SETTINGS |
| 946 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 947 | APPLICATIONS_USAGE_ACCESS_DETAIL = 183; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 948 | |
| 949 | // OPEN: Settings > Battery > Battery optimization |
| 950 | // CATEGORY: SETTINGS |
| 951 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 952 | APPLICATIONS_HIGH_POWER_APPS = 184; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 953 | |
| 954 | // OBSOLETE |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 955 | FUELGAUGE_HIGH_POWER_DETAILS = 185; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 956 | |
| 957 | // ACTION: Lockscreen > Unlock gesture |
| 958 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 959 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 960 | ACTION_LS_UNLOCK = 186; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 961 | |
| 962 | // ACTION: Lockscreen > Pull shade open |
| 963 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 964 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 965 | ACTION_LS_SHADE = 187; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 966 | |
| 967 | // ACTION: Lockscreen > Tap on lock, shows hint |
| 968 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 969 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 970 | ACTION_LS_HINT = 188; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 971 | |
| 972 | // ACTION: Lockscreen > Camera |
| 973 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 974 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 975 | ACTION_LS_CAMERA = 189; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 976 | |
| 977 | // ACTION: Lockscreen > Dialer |
| 978 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 979 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 980 | ACTION_LS_DIALER = 190; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 981 | |
| 982 | // ACTION: Lockscreen > Tap on lock, locks phone |
| 983 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 984 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 985 | ACTION_LS_LOCK = 191; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 986 | |
| 987 | // ACTION: Lockscreen > Tap on notification, false touch rejection |
| 988 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 989 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 990 | ACTION_LS_NOTE = 192; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 991 | |
| 992 | // ACTION: Lockscreen > Swipe down to open quick settings |
| 993 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 994 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 995 | ACTION_LS_QS = 193; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 996 | |
| 997 | // ACTION: Swipe down to open quick settings when unlocked |
| 998 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 999 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1000 | ACTION_SHADE_QS_PULL = 194; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1001 | |
| 1002 | // ACTION: Notification shade > Tap to open quick settings |
| 1003 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1004 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1005 | ACTION_SHADE_QS_TAP = 195; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1006 | |
| 1007 | // OPEN: Lockscreen |
| 1008 | // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN |
| 1009 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1010 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1011 | LOCKSCREEN = 196; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1012 | |
| 1013 | // OPEN: Lockscreen > Screen to enter password / pattern / PIN |
| 1014 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1015 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1016 | BOUNCER = 197; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1017 | |
| 1018 | // OPEN: Screen turned on |
| 1019 | // SUBTYPE: 2 is user action |
| 1020 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1021 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1022 | SCREEN = 198; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1023 | |
| 1024 | // OPEN: Notification caused sound, vibration, and/or LED blink |
| 1025 | // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together |
| 1026 | // CATEGORY: NOTIFICATION |
| 1027 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1028 | NOTIFICATION_ALERT = 199; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1029 | |
| 1030 | // ACTION: Lockscreen > Emergency Call button |
| 1031 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1032 | // OS: 5.1.1 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1033 | ACTION_EMERGENCY_CALL = 200; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1034 | |
| 1035 | // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input |
| 1036 | // CATEGORY: SETTINGS |
| 1037 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1038 | APPLICATIONS_MANAGE_ASSIST = 201; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1039 | |
| 1040 | // OPEN: Settings > Memory |
| 1041 | // CATEGORY: SETTINGS |
| 1042 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1043 | PROCESS_STATS_SUMMARY = 202; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1044 | |
| 1045 | // ACTION: Settings > Display > When device is rotated |
| 1046 | // CATEGORY: SETTINGS |
| 1047 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1048 | ACTION_ROTATION_LOCK = 203; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1049 | |
| 1050 | // ACTION: Long press on notification to view controls |
| 1051 | // CATEGORY: NOTIFICATION |
| 1052 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1053 | ACTION_NOTE_CONTROLS = 204; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1054 | |
| 1055 | // ACTION: Notificatoin controls > Info button |
| 1056 | // CATEGORY: NOTIFICATION |
| 1057 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1058 | ACTION_NOTE_INFO = 205; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1059 | |
| 1060 | // ACTION: Notification controls > Settings button |
| 1061 | // CATEGORY: NOTIFICATION |
| 1062 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1063 | ACTION_APP_NOTE_SETTINGS = 206; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1064 | |
| 1065 | // OPEN: Volume Dialog (with hardware buttons) |
| 1066 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1067 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1068 | VOLUME_DIALOG = 207; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1069 | |
| 1070 | // OPEN: Volume dialog > Expanded volume dialog (multiple sliders) |
| 1071 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1072 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1073 | VOLUME_DIALOG_DETAILS = 208; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1074 | |
| 1075 | // ACTION: Volume dialog > Adjust volume slider |
| 1076 | // SUBTYPE: volume level (0-7) |
| 1077 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1078 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1079 | ACTION_VOLUME_SLIDER = 209; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1080 | |
| 1081 | // ACTION: Volume dialog > Select non-active stream |
| 1082 | // SUBTYPE: stream (defined in AudioSystem.java) |
| 1083 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1084 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1085 | ACTION_VOLUME_STREAM = 210; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1086 | |
| 1087 | // ACTION: Adjust volume with hardware key |
| 1088 | // SUBTYPE: volume level (0-7) |
| 1089 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1090 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1091 | ACTION_VOLUME_KEY = 211; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1092 | |
| 1093 | // ACTION: Volume dialog > Mute a stream by tapping icon |
| 1094 | // SUBTYPE: mute is 1, audible is 2 |
| 1095 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1096 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1097 | ACTION_VOLUME_ICON = 212; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1098 | |
| 1099 | // ACTION: Volume dialog > Change ringer mode by tapping icon |
| 1100 | // SUBTYPE: 2 is audible, 3 is vibrate |
| 1101 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1102 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1103 | ACTION_RINGER_MODE = 213; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1104 | |
| 1105 | // ACTION: Chooser shown (share target, file open, etc.) |
| 1106 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1107 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1108 | ACTION_ACTIVITY_CHOOSER_SHOWN = 214; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1109 | |
| 1110 | // ACTION: Chooser > User taps an app target |
| 1111 | // SUBTYPE: Index of target |
| 1112 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1113 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1114 | ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1115 | |
| 1116 | // ACTION: Chooser > User taps a service target |
| 1117 | // SUBTYPE: Index of target |
| 1118 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1119 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1120 | ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1121 | |
| 1122 | // ACTION: Chooser > User taps a standard target |
| 1123 | // SUBTYPE: Index of target |
| 1124 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1125 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1126 | ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1127 | |
| 1128 | // ACTION: QS Brightness Slider (with auto brightness disabled) |
| 1129 | // SUBTYPE: slider value |
| 1130 | // CATEGORY: QUICK_SETTINGS |
| 1131 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1132 | ACTION_BRIGHTNESS = 218; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1133 | |
| 1134 | // ACTION: QS Brightness Slider (with auto brightness enabled) |
| 1135 | // SUBTYPE: slider value |
| 1136 | // CATEGORY: QUICK_SETTINGS |
| 1137 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1138 | ACTION_BRIGHTNESS_AUTO = 219; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1139 | |
| 1140 | // OPEN: Settings > Display > Brightness Slider |
| 1141 | // CATEGORY: SETTINGS |
| 1142 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1143 | BRIGHTNESS_DIALOG = 220; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1144 | |
| 1145 | // OPEN: Settings > Apps > Configure Apps > Draw over other apps |
| 1146 | // CATEGORY: SETTINGS |
| 1147 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1148 | SYSTEM_ALERT_WINDOW_APPS = 221; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1149 | |
| 1150 | // OPEN: Display has entered dream mode |
| 1151 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1152 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1153 | DREAMING = 222; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1154 | |
| 1155 | // OPEN: Display has entered ambient notification mode |
| 1156 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1157 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1158 | DOZING = 223; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1159 | |
| 1160 | // OPEN: Overview |
| 1161 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1162 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1163 | OVERVIEW_ACTIVITY = 224; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1164 | |
| 1165 | // OPEN: Settings > About phone > Legal information |
| 1166 | // CATEGORY: SETTINGS |
| 1167 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1168 | ABOUT_LEGAL_SETTINGS = 225; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1169 | |
| 1170 | // OPEN: Settings > Search > Perform search |
| 1171 | // CATEGORY: SETTINGS |
| 1172 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1173 | ACTION_SEARCH_RESULTS = 226; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1174 | |
| 1175 | // OPEN: Settings > System UI Tuner |
| 1176 | // CATEGORY: SETTINGS |
| 1177 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1178 | TUNER = 227; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1179 | |
| 1180 | // OPEN: Settings > System UI Tuner > Quick Settings |
| 1181 | // CATEGORY: SETTINGS |
| 1182 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1183 | TUNER_QS = 228; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1184 | |
| 1185 | // OPEN: Settings > System UI Tuner > Demo mode |
| 1186 | // CATEGORY: SETTINGS |
| 1187 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1188 | TUNER_DEMO_MODE = 229; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1189 | |
| 1190 | // ACTION: Settings > System UI Tuner > Quick Settings > Move tile |
| 1191 | // PACKAGE: Tile |
| 1192 | // CATEGORY: SETTINGS |
| 1193 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1194 | TUNER_QS_REORDER = 230; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1195 | |
| 1196 | // ACTION: Settings > System UI Tuner > Quick Settings > Add tile |
| 1197 | // PACKAGE: Tile |
| 1198 | // CATEGORY: SETTINGS |
| 1199 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1200 | TUNER_QS_ADD = 231; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1201 | |
| 1202 | // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile |
| 1203 | // PACKAGE: Tile |
| 1204 | // CATEGORY: SETTINGS |
| 1205 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1206 | TUNER_QS_REMOVE = 232; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1207 | |
| 1208 | // ACTION: Settings > System UI Tuner > Status bar > Enable icon |
| 1209 | // PACKAGE: Icon |
| 1210 | // CATEGORY: SETTINGS |
| 1211 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1212 | TUNER_STATUS_BAR_ENABLE = 233; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1213 | |
| 1214 | // ACTION: Settings > System UI Tuner > Status bar > Disable icon |
| 1215 | // PACKAGE: Icon |
| 1216 | // CATEGORY: SETTINGS |
| 1217 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1218 | TUNER_STATUS_BAR_DISABLE = 234; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1219 | |
| 1220 | // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode |
| 1221 | // SUBTYPE: false is disabled, true is enabled |
| 1222 | // CATEGORY: SETTINGS |
| 1223 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1224 | TUNER_DEMO_MODE_ENABLED = 235; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1225 | |
| 1226 | // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode |
| 1227 | // SUBTYPE: false is disabled, true is enabled |
| 1228 | // CATEGORY: SETTINGS |
| 1229 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1230 | TUNER_DEMO_MODE_ON = 236; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1231 | |
| 1232 | // ACTION: Settings > System UI Tuner > Show embedded battery percentage |
| 1233 | // SUBTYPE: 0 is disabled, 1 is enabled |
| 1234 | // CATEGORY: SETTINGS |
| 1235 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1236 | TUNER_BATTERY_PERCENTAGE = 237; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1237 | |
| 1238 | // OPEN: Settings > Developer options > Inactive apps |
| 1239 | // CATEGORY: SETTINGS |
| 1240 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1241 | FUELGAUGE_INACTIVE_APPS = 238; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1242 | |
| 1243 | // ACTION: Long press home to bring up assistant |
| 1244 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1245 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1246 | ACTION_ASSIST_LONG_PRESS = 239; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1247 | |
| 1248 | // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint |
| 1249 | // CATEGORY: SETTINGS |
| 1250 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1251 | FINGERPRINT_ENROLLING = 240; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1252 | |
| 1253 | // OPEN: Fingerprint Enroll > Find Sensor |
| 1254 | // CATEGORY: SETTINGS |
| 1255 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1256 | FINGERPRINT_FIND_SENSOR = 241; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1257 | |
| 1258 | // OPEN: Fingerprint Enroll > Fingerprint Enrolled! |
| 1259 | // CATEGORY: SETTINGS |
| 1260 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1261 | FINGERPRINT_ENROLL_FINISH = 242; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1262 | |
| 1263 | // OPEN: Fingerprint Enroll introduction |
| 1264 | // CATEGORY: SETTINGS |
| 1265 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1266 | FINGERPRINT_ENROLL_INTRO = 243; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1267 | |
| 1268 | // OPEN: Fingerprint Enroll onboarding |
| 1269 | // CATEGORY: SETTINGS |
| 1270 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1271 | FINGERPRINT_ENROLL_ONBOARD = 244; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1272 | |
| 1273 | // OPEN: Fingerprint Enroll > Let's Start! |
| 1274 | // CATEGORY: SETTINGS |
| 1275 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1276 | FINGERPRINT_ENROLL_SIDECAR = 245; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1277 | |
| 1278 | // OPEN: Fingerprint Enroll SUW > Let's Start! |
| 1279 | // CATEGORY: SETTINGS |
| 1280 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1281 | FINGERPRINT_ENROLLING_SETUP = 246; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1282 | |
| 1283 | // OPEN: Fingerprint Enroll SUW > Find Sensor |
| 1284 | // CATEGORY: SETTINGS |
| 1285 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1286 | FINGERPRINT_FIND_SENSOR_SETUP = 247; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1287 | |
| 1288 | // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled! |
| 1289 | // CATEGORY: SETTINGS |
| 1290 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1291 | FINGERPRINT_ENROLL_FINISH_SETUP = 248; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1292 | |
| 1293 | // OPEN: Fingerprint Enroll SUW introduction |
| 1294 | // CATEGORY: SETTINGS |
| 1295 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1296 | FINGERPRINT_ENROLL_INTRO_SETUP = 249; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1297 | |
| 1298 | // OPEN: Fingerprint Enroll SUW onboarding |
| 1299 | // CATEGORY: SETTINGS |
| 1300 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1301 | FINGERPRINT_ENROLL_ONBOARD_SETUP = 250; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1302 | |
| 1303 | // ACTION: Add fingerprint > Enroll fingerprint |
| 1304 | // CATEGORY: SETTINGS |
| 1305 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1306 | ACTION_FINGERPRINT_ENROLL = 251; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1307 | |
| 1308 | // ACTION: Authenticate using fingerprint |
| 1309 | // CATEGORY: SETTINGS |
| 1310 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1311 | ACTION_FINGERPRINT_AUTH = 252; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1312 | |
| 1313 | // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete |
| 1314 | // CATEGORY: SETTINGS |
| 1315 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1316 | ACTION_FINGERPRINT_DELETE = 253; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1317 | |
| 1318 | // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename |
| 1319 | // CATEGORY: SETTINGS |
| 1320 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1321 | ACTION_FINGERPRINT_RENAME = 254; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1322 | |
| 1323 | // ACTION: Double tap camera shortcut |
| 1324 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1325 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1326 | ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1327 | |
| 1328 | // ACTION: Double twist camera shortcut |
| 1329 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1330 | // OS: 6.0 |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1331 | ACTION_WIGGLE_CAMERA_GESTURE = 256; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1332 | |
| 1333 | // OPEN: QS Work Mode tile shown |
| 1334 | // ACTION: QS Work Mode tile tapped |
| 1335 | // SUBTYPE: 0 is off, 1 is on |
| 1336 | // CATEGORY: QUICK_SETTINGS |
| 1337 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1338 | QS_WORKMODE = 257; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1339 | |
| 1340 | // OPEN: Settings > Developer Options > Background Check |
| 1341 | // CATEGORY: SETTINGS |
| 1342 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1343 | BACKGROUND_CHECK_SUMMARY = 258; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1344 | |
| 1345 | // OPEN: QS Lock tile shown |
| 1346 | // ACTION: QS Lock tile tapped |
| 1347 | // SUBTYPE: 0 is off, 1 is on |
| 1348 | // CATEGORY: QUICK_SETTINGS |
| 1349 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1350 | QS_LOCK_TILE = 259; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1351 | |
| 1352 | // OPEN: QS User Tile shown |
| 1353 | // CATEGORY: QUICK_SETTINGS |
| 1354 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1355 | QS_USER_TILE = 260; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1356 | |
| 1357 | // OPEN: QS Battery tile shown |
| 1358 | // CATEGORY: QUICK_SETTINGS |
| 1359 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1360 | QS_BATTERY_TILE = 261; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1361 | |
| 1362 | // OPEN: Settings > Sound > Do not disturb > Visual interruptions |
| 1363 | // CATEGORY: SETTINGS |
| 1364 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1365 | NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1366 | |
| 1367 | // ACTION: Visual interruptions > No screen interuptions toggle |
| 1368 | // SUBTYPE: 0 is off, 1 is on |
| 1369 | // CATEGORY: SETTINGS |
| 1370 | // OS: N |
Julia Reynolds | d560729 | 2016-02-05 15:25:58 -0500 | [diff] [blame] | 1371 | ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1372 | |
| 1373 | // ACTION: Visual interruptions > No notification light toggle |
| 1374 | // SUBTYPE: 0 is off, 1 is on |
| 1375 | // CATEGORY: SETTINGS |
| 1376 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1377 | ACTION_ZEN_ALLOW_LIGHTS = 264; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1378 | |
| 1379 | // OPEN: Settings > Notifications > [App] > Topic Notifications |
| 1380 | // CATEGORY: SETTINGS |
| 1381 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1382 | NOTIFICATION_TOPIC_NOTIFICATION = 265; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1383 | |
| 1384 | // ACTION: Settings > Apps > Default Apps > Select different SMS app |
| 1385 | // PACKAGE: Selected SMS app |
| 1386 | // CATEGORY: SETTINGS |
| 1387 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1388 | ACTION_DEFAULT_SMS_APP_CHANGED = 266; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1389 | |
| 1390 | // OPEN: QS Color modification tile shown |
| 1391 | // ACTION: QS Color modification tile tapped |
| 1392 | // SUBTYPE: 0 is off, 1 is on |
| 1393 | // CATEGORY: QUICK_SETTINGS |
| 1394 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1395 | QS_COLOR_MATRIX = 267; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1396 | |
| 1397 | // OPEN: QS Custom tile shown |
| 1398 | // ACTION: QS Work Mode tile tapped |
| 1399 | // CATEGORY: QUICK_SETTINGS |
| 1400 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1401 | QS_CUSTOM = 268; |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1402 | |
| 1403 | // ACTION: Visual interruptions > Never turn off the screen toggle |
| 1404 | // SUBTYPE: 0 is off, 1 is on |
| 1405 | // CATEGORY: SETTINGS |
| 1406 | // OS: N |
Julia Reynolds | d560729 | 2016-02-05 15:25:58 -0500 | [diff] [blame] | 1407 | ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269; |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1408 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1409 | // ACTION: Overview > Long-press task, drag to enter split-screen |
| 1410 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1411 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1412 | ACTION_WINDOW_DOCK_DRAG_DROP = 270; |
| 1413 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1414 | // ACTION: In App > Long-press Overview button to enter split-screen |
| 1415 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1416 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1417 | ACTION_WINDOW_DOCK_LONGPRESS = 271; |
| 1418 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1419 | // ACTION: In App > Swipe Overview button to enter split-screen |
| 1420 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1421 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1422 | ACTION_WINDOW_DOCK_SWIPE = 272; |
| 1423 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1424 | // ACTION: Launch profile-specific app > Confirm credentials |
| 1425 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1426 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1427 | PROFILE_CHALLENGE = 273; |
| 1428 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1429 | // OPEN: QS Battery detail panel |
| 1430 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1431 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1432 | QS_BATTERY_DETAIL = 274; |
| 1433 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1434 | // OPEN: Overview > History |
| 1435 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1436 | // OS: N |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1437 | OVERVIEW_HISTORY = 275; |
| 1438 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1439 | // ACTION: Overview > Page by tapping Overview button |
| 1440 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1441 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1442 | ACTION_OVERVIEW_PAGE = 276; |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 1443 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1444 | // ACTION: Overview > Select app |
| 1445 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1446 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1447 | ACTION_OVERVIEW_SELECT = 277; |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1448 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1449 | // ACTION: View emergency info |
| 1450 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1451 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1452 | ACTION_VIEW_EMERGENCY_INFO = 278; |
| 1453 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1454 | // ACTION: Edit emergency info activity |
| 1455 | // CATEGORY: SETTINGS |
| 1456 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1457 | ACTION_EDIT_EMERGENCY_INFO = 279; |
| 1458 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1459 | // ACTION: Edit emergency info field |
| 1460 | // CATEGORY: SETTINGS |
| 1461 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1462 | ACTION_EDIT_EMERGENCY_INFO_FIELD = 280; |
| 1463 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1464 | // ACTION: Add emergency contact |
| 1465 | // CATEGORY: SETTINGS |
| 1466 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1467 | ACTION_ADD_EMERGENCY_CONTACT = 281; |
| 1468 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1469 | // ACTION: Delete emergency contact |
| 1470 | // CATEGORY: SETTINGS |
| 1471 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1472 | ACTION_DELETE_EMERGENCY_CONTACT = 282; |
| 1473 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1474 | // ACTION: Call emergency contact |
| 1475 | // CATEGORY: SETTINGS |
| 1476 | // OS: N |
mariagpuyol | 64916b7 | 2016-01-21 13:53:21 -0800 | [diff] [blame] | 1477 | ACTION_CALL_EMERGENCY_CONTACT = 283; |
Jason Monk | 9a4ce13 | 2016-01-21 15:27:17 -0500 | [diff] [blame] | 1478 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1479 | // OPEN: QS Data Saver tile shown |
| 1480 | // ACTION: QS Data Saver tile tapped |
| 1481 | // CATEGORY: QUICK_SETTINGS |
Jason Monk | 9a4ce13 | 2016-01-21 15:27:17 -0500 | [diff] [blame] | 1482 | QS_DATA_SAVER = 284; |
Jorim Jaggi | dd50c3f | 2016-02-04 14:55:07 -0800 | [diff] [blame] | 1483 | |
Robin Lee | 8c1306e | 2016-02-01 11:37:02 +0000 | [diff] [blame] | 1484 | // OPEN: Settings > Security > User credentials |
| 1485 | // CATEGORY: Settings |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1486 | // OS: N |
Robin Lee | 8c1306e | 2016-02-01 11:37:02 +0000 | [diff] [blame] | 1487 | USER_CREDENTIALS = 285; |
Jorim Jaggi | ea4a19f | 2016-02-03 21:31:27 -0800 | [diff] [blame] | 1488 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1489 | // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen |
| 1490 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1491 | // OS: N |
Jorim Jaggi | dd50c3f | 2016-02-04 14:55:07 -0800 | [diff] [blame] | 1492 | ACTION_WINDOW_UNDOCK_LONGPRESS = 286; |
Winson | 4232952 | 2016-02-05 10:39:46 -0800 | [diff] [blame] | 1493 | |
| 1494 | // Logged when the user scrolls through overview manually |
| 1495 | OVERVIEW_SCROLL = 287; |
| 1496 | |
| 1497 | // Logged when the overview times out automatically selecting an app |
| 1498 | OVERVIEW_SELECT_TIMEOUT = 288; |
| 1499 | |
| 1500 | // Logged when a user dismisses a task in overview |
| 1501 | OVERVIEW_DISMISS = 289; |
Julia Reynolds | b1a235f | 2016-02-09 12:57:02 -0500 | [diff] [blame] | 1502 | |
| 1503 | // Logged when the user modifying the notification importance slider. |
| 1504 | ACTION_MODIFY_IMPORTANCE_SLIDER = 290; |
| 1505 | |
| 1506 | // Logged when the user saves a modification to notification importance. Negative numbers |
| 1507 | // indicate the user lowered the importance; positive means they increased it. |
| 1508 | ACTION_SAVE_IMPORTANCE = 291; |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1509 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1510 | // ACTION: Long-press power button, then tap "Take bug report" option. |
| 1511 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1512 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1513 | ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292; |
| 1514 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1515 | // ACTION: Long-press power button, then long-press "Take bug report" option. |
| 1516 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1517 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1518 | ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293; |
| 1519 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1520 | // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report |
| 1521 | // CATEGORY: SETTINGS |
| 1522 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1523 | // Interactive bug report initiated from Settings. |
| 1524 | ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294; |
| 1525 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1526 | // ACTION: Settings -> Developer Options -> Take bug report -> Full report |
| 1527 | // CATEGORY: SETTINGS |
| 1528 | // OS: N |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1529 | // Interactive bug report initiated from Settings. |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1530 | ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295; |
| 1531 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1532 | // ACTION: User tapped notification action to cancel a bug report |
| 1533 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1534 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1535 | ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296; |
| 1536 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1537 | // ACTION: User tapped notification action to launch bug report details screen |
| 1538 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1539 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1540 | ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297; |
| 1541 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1542 | // ACTION: User tapped notification action to take adition screenshot on bug report |
| 1543 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1544 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1545 | ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298; |
| 1546 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1547 | // ACTION: User tapped notification to share bug report |
| 1548 | // CATEGORY: NOTIFICATION |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1549 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1550 | ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299; |
| 1551 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1552 | // ACTION: User changed bug report name using the details screen |
| 1553 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1554 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1555 | ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300; |
| 1556 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1557 | // ACTION: User changed bug report title using the details screen |
| 1558 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1559 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1560 | ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301; |
| 1561 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1562 | // ACTION: User changed bug report description using the details screen |
| 1563 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1564 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1565 | ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302; |
| 1566 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1567 | // ACTION: User tapped Save in the bug report details screen. |
| 1568 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1569 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1570 | ACTION_BUGREPORT_DETAILS_SAVED = 303; |
| 1571 | |
Chris Wren | 7c51684 | 2016-03-01 16:44:32 -0500 | [diff] [blame] | 1572 | // ACTION: User tapped Cancel in the bug report details screen. |
| 1573 | // CATEGORY: GLOBAL_SYSTEM_UI |
Chris Wren | dc86f34 | 2016-03-03 15:38:40 -0500 | [diff] [blame] | 1574 | // OS: N |
Felipe Leme | 6605bd8 | 2016-02-22 15:22:20 -0800 | [diff] [blame] | 1575 | ACTION_BUGREPORT_DETAILS_CANCELED = 304; |
Jason Monk | 5732df4 | 2016-02-24 16:24:55 -0500 | [diff] [blame] | 1576 | |
| 1577 | // Tuner: Open/close calibrate dialog. |
| 1578 | TUNER_CALIBRATE_DISPLAY = 305; |
| 1579 | |
| 1580 | // Tuner: Open/close color and appearance. |
| 1581 | TUNER_COLOR_AND_APPEARANCE = 306; |
| 1582 | |
| 1583 | // Tuner: Apply calibrate dialog. |
| 1584 | ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307; |
| 1585 | |
| 1586 | // Tuner: Open/close night mode. |
| 1587 | TUNER_NIGHT_MODE = 308; |
| 1588 | |
| 1589 | // Tuner: Change night mode. |
| 1590 | ACTION_TUNER_NIGHT_MODE = 309; |
| 1591 | |
| 1592 | // Tuner: Change night mode auto. |
| 1593 | ACTION_TUNER_NIGHT_MODE_AUTO = 310; |
| 1594 | |
| 1595 | // Tuner: Change night mode adjust dark theme. |
| 1596 | ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311; |
| 1597 | |
| 1598 | // Tuner: Change night mode adjust tint. |
| 1599 | ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312; |
| 1600 | |
| 1601 | // Tuner: Change night mode adjust brightness. |
| 1602 | ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313; |
| 1603 | |
| 1604 | // Tuner: Change do not disturb in volume panel. |
| 1605 | ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314; |
| 1606 | |
| 1607 | // Tuner: Change do not disturb volume buttons shortcut. |
| 1608 | ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315; |
Adrian Roos | 9046222 | 2016-02-17 15:45:09 -0800 | [diff] [blame] | 1609 | |
| 1610 | // Logs the action the user takes when an app crashed. |
| 1611 | ACTION_APP_CRASH = 316; |
| 1612 | |
| 1613 | // Logs the action the user takes when an app ANR'd. |
| 1614 | ACTION_APP_ANR = 317; |
Winson | d934290 | 2016-02-25 10:18:33 -0800 | [diff] [blame] | 1615 | |
| 1616 | // Logged when a user double taps the overview button to launch the previous task |
| 1617 | OVERVIEW_LAUNCH_PREVIOUS_TASK = 318; |
Jorim Jaggi | 275561a | 2016-02-23 10:11:02 -0500 | [diff] [blame] | 1618 | |
| 1619 | // Logged when we execute an app transition. This indicates the total delay from startActivity |
| 1620 | // until the app transition is starting to animate, in milliseconds. |
| 1621 | APP_TRANSITION_DELAY_MS = 319; |
| 1622 | |
| 1623 | // Logged when we execute an app transition. This indicates the reason why the transition |
| 1624 | // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons. |
| 1625 | APP_TRANSITION_REASON = 320; |
| 1626 | |
| 1627 | // Logged when we execute an app transition and we drew a starting window. This indicates the |
| 1628 | // delay from startActivity until the starting window was drawn. |
| 1629 | APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321; |
| 1630 | |
| 1631 | // Logged when we execute an app transition and all windows of the app got drawn. This indicates |
| 1632 | // the delay from startActivity until all windows have been drawn. |
| 1633 | APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322; |
| 1634 | |
| 1635 | // Logged when we execute an app transition. This indicates the component name of the current |
| 1636 | // transition. |
| 1637 | APP_TRANSITION_COMPONENT_NAME = 323; |
| 1638 | |
| 1639 | // Logged when we execute an app transition. This indicates whether the process was already |
| 1640 | // running. |
| 1641 | APP_TRANSITION_PROCESS_RUNNING = 324; |
| 1642 | |
| 1643 | // Logged when we execute an app transition. This indicates the device uptime in seconds when |
| 1644 | // the transition was executed. |
| 1645 | APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325; |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1646 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1647 | // ACTION: app requested access to a scoped directory, user granted it. |
| 1648 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES |
| 1649 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1650 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1651 | ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326; |
| 1652 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1653 | // ACTION: app requested access to a scoped directory, user denied it. |
| 1654 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES |
| 1655 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1656 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1657 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327; |
| 1658 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1659 | // ACTION: app requested access to a scoped directory, user granted it. |
| 1660 | // PACKAGE: app that requested access |
| 1661 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1662 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1663 | ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328; |
| 1664 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1665 | // ACTION: app requested access to a scoped directory, user denied it. |
| 1666 | // PACKAGE: app that requested access. |
| 1667 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1668 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1669 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329; |
| 1670 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1671 | // ACTION: app requested access to a directory user has already been granted |
| 1672 | // access before. |
| 1673 | // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES. |
| 1674 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1675 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1676 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330; |
| 1677 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1678 | // ACTION: app requested access to a directory user has already been granted |
| 1679 | // access before. |
| 1680 | // PACKAGE: app that requested access. |
| 1681 | // CATEGORY: GLOBAL_SYSTEM_UI |
| 1682 | // OS: N |
Felipe Leme | 3e166b2 | 2016-02-24 10:17:41 -0800 | [diff] [blame] | 1683 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331; |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 1684 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1685 | // ACTION: Logged when the user slides a notification and reveals the gear |
| 1686 | // beneath it. |
| 1687 | // CATEGORY: NOTIFICATION |
| 1688 | // OS: N |
Mady Mellor | a41587b | 2016-02-11 18:43:06 -0800 | [diff] [blame] | 1689 | ACTION_REVEAL_GEAR = 332; |
| 1690 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1691 | // ACTION: Logged when the user taps on the gear beneath a notification. |
| 1692 | // CATEGORY: NOTIFICATION |
| 1693 | // OS: N |
Mady Mellor | a41587b | 2016-02-11 18:43:06 -0800 | [diff] [blame] | 1694 | ACTION_TOUCH_GEAR = 333; |
| 1695 | |
Ruben Brunk | e24b9a6 | 2016-02-16 21:38:24 -0800 | [diff] [blame] | 1696 | // Logs that the user has edited the enabled VR listeners. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1697 | // CATEGORY: SETTINGS |
| 1698 | // OS: N |
Ruben Brunk | e24b9a6 | 2016-02-16 21:38:24 -0800 | [diff] [blame] | 1699 | VR_MANAGE_LISTENERS = 334; |
| 1700 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1701 | // Settings -> Accessibility -> Click after pointer stops moving |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1702 | // CATEGORY: SETTINGS |
| 1703 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1704 | ACCESSIBILITY_TOGGLE_AUTOCLICK = 335; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1705 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1706 | // Settings -> Sound |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1707 | // CATEGORY: SETTINGS |
| 1708 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1709 | SOUND = 336; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1710 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1711 | // Settings -> Notifications -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1712 | // CATEGORY: SETTINGS |
| 1713 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1714 | CONFIGURE_NOTIFICATION = 337; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1715 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1716 | // Settings -> Wi-Fi -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1717 | // CATEGORY: SETTINGS |
| 1718 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1719 | CONFIGURE_WIFI = 338; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1720 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1721 | // Settings -> Display -> Display size |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1722 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1723 | DISPLAY_SCREEN_ZOOM = 339; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1724 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1725 | // Settings -> Display -> Font size |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1726 | // CATEGORY: SETTINGS |
| 1727 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1728 | ACCESSIBILITY_FONT_SIZE = 340; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1729 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1730 | // Settings -> Data usage -> Cellular/Wi-Fi data usage |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1731 | // CATEGORY: SETTINGS |
| 1732 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1733 | DATA_USAGE_LIST = 341; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1734 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1735 | // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1736 | // CATEGORY: SETTINGS |
| 1737 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1738 | BILLING_CYCLE = 342; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1739 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1740 | // DATA_USAGE_LIST -> Any item or App info -> Data usage |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1741 | // CATEGORY: SETTINGS |
| 1742 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1743 | APP_DATA_USAGE = 343; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1744 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1745 | // Settings -> Language & input -> Language |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1746 | // CATEGORY: SETTINGS |
| 1747 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1748 | USER_LOCALE_LIST = 344; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1749 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1750 | // Settings -> Language & input -> Virtual keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1751 | // CATEGORY: SETTINGS |
| 1752 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1753 | VIRTUAL_KEYBOARDS = 345; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1754 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1755 | // Settings -> Language & input -> Physical keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1756 | // CATEGORY: SETTINGS |
| 1757 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1758 | PHYSICAL_KEYBOARDS = 346; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1759 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1760 | // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1761 | // CATEGORY: SETTINGS |
| 1762 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1763 | ENABLE_VIRTUAL_KEYBOARDS = 347; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1764 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1765 | // Settings -> Data usage -> Data Saver |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1766 | // CATEGORY: SETTINGS |
| 1767 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1768 | DATA_SAVER_SUMMARY = 348; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1769 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1770 | // Settings -> Data usage -> Data Saver -> Unrestricted data access |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1771 | // CATEGORY: SETTINGS |
| 1772 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1773 | DATA_USAGE_UNRESTRICTED_ACCESS = 349; |
| 1774 | |
| 1775 | // Used for generic logging of Settings Preference Persistence, should not be used |
| 1776 | // outside SharedPreferencesLogger. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1777 | // CATEGORY: SETTINGS |
| 1778 | // OS: N |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1779 | ACTION_GENERIC_PACKAGE = 350; |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1780 | |
Jason Monk | 6f5354d | 2016-03-08 14:18:08 -0500 | [diff] [blame] | 1781 | // Settings -> Apps -> Gear -> Special access |
| 1782 | SPECIAL_ACCESS = 351; |
| 1783 | |
Muyuan Li | a212999 | 2016-03-03 18:30:39 -0800 | [diff] [blame] | 1784 | // Logs that the user docks window via shortcut key. |
| 1785 | WINDOW_DOCK_SHORTCUTS = 352; |
| 1786 | |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1787 | // User already denied access to the request folder; action takes an integer |
| 1788 | // representing the folder's index on Environment.STANDARD_DIRECTORIES |
Felipe Leme | db892b8 | 2016-03-17 18:56:20 -0700 | [diff] [blame] | 1789 | // (or -2 for root access, or -1 or unknown directory). |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1790 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353; |
| 1791 | |
| 1792 | // User already denied access to the request folder; action pass package name |
| 1793 | // of calling package. |
| 1794 | ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354; |
| 1795 | |
| 1796 | // User denied access to the request folder and checked 'Do not ask again'; |
| 1797 | // 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] | 1798 | // (or -2 for root access, or -1 or unknown directory). |
Felipe Leme | adccb99 | 2016-03-09 17:40:49 -0800 | [diff] [blame] | 1799 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355; |
| 1800 | |
| 1801 | // User denied access to the request folder and checked 'Do not ask again'; |
| 1802 | // action pass package name of calling package. |
| 1803 | ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356; |
| 1804 | |
Winson | 3b6ba1a | 2016-03-22 15:37:54 -0700 | [diff] [blame] | 1805 | // Logged when a user dismisses all task in overview |
| 1806 | OVERVIEW_DISMISS_ALL = 357; |
| 1807 | |
Jason Monk | 96defbe | 2016-03-29 16:51:03 -0400 | [diff] [blame] | 1808 | // Quick Settings -> Edit |
| 1809 | QS_EDIT = 358; |
| 1810 | |
| 1811 | // Quick Settings -> Edit -> Overflow -> Reset |
| 1812 | ACTION_QS_EDIT_RESET = 359; |
| 1813 | |
| 1814 | // QS -> Edit - Drag a tile out of the active tiles. |
| 1815 | // The _SPEC contains either the spec of the tile or |
| 1816 | // the package of the 3rd party app in the PKG field. |
| 1817 | ACTION_QS_EDIT_REMOVE_SPEC = 360; |
| 1818 | ACTION_QS_EDIT_REMOVE = 361; |
| 1819 | |
| 1820 | // QS -> Edit - Drag a tile into the active tiles. |
| 1821 | // The _SPEC contains either the spec of the tile or |
| 1822 | // the package of the 3rd party app in the PKG field. |
| 1823 | ACTION_QS_EDIT_ADD_SPEC = 362; |
| 1824 | ACTION_QS_EDIT_ADD = 363; |
| 1825 | |
| 1826 | // QS -> Edit - Drag a tile within the active tiles. |
| 1827 | // The _SPEC contains either the spec of the tile or |
| 1828 | // the package of the 3rd party app in the PKG field. |
| 1829 | ACTION_QS_EDIT_MOVE_SPEC = 364; |
| 1830 | ACTION_QS_EDIT_MOVE = 365; |
| 1831 | |
| 1832 | // Long-press on a QS tile. Tile spec in package field. |
| 1833 | ACTION_QS_LONG_PRESS = 366; |
| 1834 | |
Anna Galusza | dad131f | 2016-03-22 13:49:02 -0700 | [diff] [blame] | 1835 | // OPEN: SUW Welcome Screen -> Vision Settings |
| 1836 | // CATEGORY: SETTINGS |
| 1837 | // OS: N |
| 1838 | SUW_ACCESSIBILITY = 367; |
| 1839 | |
| 1840 | // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture |
| 1841 | // ACTION: New magnification gesture configuration is chosen |
| 1842 | // SUBTYPE: 0 is off, 1 is on |
| 1843 | // CATEGORY: SETTINGS |
| 1844 | // OS: N |
| 1845 | SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368; |
| 1846 | |
| 1847 | // OPEN: SUW Welcome Screen -> Vision Settings -> Font size |
| 1848 | // ACTION: New font size is chosen |
| 1849 | // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest |
| 1850 | // CATEGORY: SETTINGS |
| 1851 | // OS: N |
| 1852 | SUW_ACCESSIBILITY_FONT_SIZE = 369; |
| 1853 | |
| 1854 | // OPEN: SUW Welcome Screen -> Vision Settings -> Display size |
| 1855 | // ACTION: New display size is chosen |
| 1856 | // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest |
| 1857 | // CATEGORY: SETTINGS |
| 1858 | // OS: N |
| 1859 | SUW_ACCESSIBILITY_DISPLAY_SIZE = 370; |
| 1860 | |
| 1861 | // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack |
| 1862 | // ACTION: New screen reader configuration is chosen |
| 1863 | // SUBTYPE: 0 is off, 1 is on |
| 1864 | // CATEGORY: SETTINGS |
| 1865 | // OS: N |
| 1866 | SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371; |
| 1867 | |
Jason Monk | c362039 | 2016-03-30 15:46:03 -0400 | [diff] [blame] | 1868 | // ------- Begin N Settings conditionals ----- |
| 1869 | // Conditionals are the green bars at the top of the settings dashboard |
| 1870 | // All conditionals will have visible/hide events onResume/onPause |
| 1871 | // but they will also be used as extra ints in the |
| 1872 | // dismiss/expand/collapse/click/button events |
| 1873 | |
| 1874 | // swipe away conditional |
| 1875 | ACTION_SETTINGS_CONDITION_DISMISS = 372; |
| 1876 | |
| 1877 | // click on collapsed conditional or clicks expand button |
| 1878 | ACTION_SETTINGS_CONDITION_EXPAND = 373; |
| 1879 | |
| 1880 | // click collapse button on expanded conditional |
| 1881 | ACTION_SETTINGS_CONDITION_COLLAPSE = 374; |
| 1882 | |
| 1883 | // click main area of expanded conditional |
| 1884 | ACTION_SETTINGS_CONDITION_CLICK = 375; |
| 1885 | |
| 1886 | // click a direct button on expanded conditional |
| 1887 | ACTION_SETTINGS_CONDITION_BUTTON = 376; |
| 1888 | |
| 1889 | // Airplane mode on |
| 1890 | SETTINGS_CONDITION_AIRPLANE_MODE = 377; |
| 1891 | // AKA Data saver on |
| 1892 | SETTINGS_CONDITION_BACKGROUND_DATA = 378; |
| 1893 | // Battery saver on |
| 1894 | SETTINGS_CONDITION_BATTERY_SAVER = 379; |
| 1895 | // Cellular data off |
| 1896 | SETTINGS_CONDITION_CELLULAR_DATA = 380; |
| 1897 | // Do not disturb on |
| 1898 | SETTINGS_CONDITION_DND = 381; |
| 1899 | // Hotspot on |
| 1900 | SETTINGS_CONDITION_HOTSPOT = 382; |
| 1901 | // Work profile off |
| 1902 | SETTINGS_CONDITION_WORK_MODE = 383; |
| 1903 | |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1904 | // ------- Begin N Settings suggestions ----- |
| 1905 | // Since suggestions come from system apps, suggestions will |
| 1906 | // have generic constants and the package providing the suggestion |
| 1907 | // will be put in the package field. For suggestions in the Settings |
| 1908 | // package, the class name will be filled in instead (since settings |
| 1909 | // provides several suggetions). |
| 1910 | |
| 1911 | // Settings shown/hidden on main settings dashboard. |
| 1912 | // These are actually visibility events, but visible/hidden doesn't |
| 1913 | // take a package, so these are being logged as actions. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 1914 | ACTION_SHOW_SETTINGS_SUGGESTION = 384; |
| 1915 | ACTION_HIDE_SETTINGS_SUGGESTION = 385; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1916 | |
| 1917 | // Click on a suggestion. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 1918 | ACTION_SETTINGS_SUGGESTION = 386; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1919 | |
| 1920 | // Suggestion -> Overflow -> Remove. |
Jason Monk | d9b7909 | 2016-03-31 10:00:09 -0400 | [diff] [blame] | 1921 | ACTION_SETTINGS_DISMISS_SUGGESTION = 387; |
Jason Monk | 1b5d87b | 2016-03-30 16:03:15 -0400 | [diff] [blame] | 1922 | |
Jason Monk | 397df68 | 2016-03-28 15:48:34 -0400 | [diff] [blame] | 1923 | // Settings > Apps > Gear > Special Access > Premium SMS access |
| 1924 | PREMIUM_SMS_ACCESS = 388; |
| 1925 | |
Jorim Jaggi | 29379ec | 2016-04-11 23:43:42 -0700 | [diff] [blame] | 1926 | // Logged when the user resizes the docked stack. Arguments: |
| 1927 | // 0: Split 50:50 |
| 1928 | // 1: Docked smaller |
| 1929 | // 2: Docked larger |
| 1930 | ACTION_WINDOW_DOCK_RESIZE = 389; |
| 1931 | |
| 1932 | // User exits split-screen by dragging the divider to the side of the screen. Arguments |
| 1933 | // 0: Docked gets maximized |
| 1934 | // 1: Fullscreen gets maximized |
| 1935 | ACTION_WINDOW_UNDOCK_MAX = 390; |
| 1936 | |
| 1937 | // User tried to dock an unresizable app. |
| 1938 | ACTION_WINDOW_DOCK_UNRESIZABLE = 391; |
| 1939 | |
Julia Reynolds | 4d920ff | 2016-04-06 20:31:05 -0400 | [diff] [blame] | 1940 | // System UI Tuner > Other > Power notification controls |
| 1941 | TUNER_POWER_NOTIFICATION_CONTROLS = 392; |
| 1942 | |
| 1943 | // System UI Tuner > Other > Power notification controls > Toggle on/off |
| 1944 | ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393; |
| 1945 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1946 | // Action: user enable / disabled data saver using Settings |
| 1947 | // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle |
| 1948 | // VALUE: 1 for enabled, 0 for disabled |
| 1949 | // CATEGORY: SETTINGS |
| 1950 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 1951 | ACTION_DATA_SAVER_MODE = 394; |
| 1952 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1953 | // User whitelisted an app for Data Saver mode; action pass package name of app |
| 1954 | // Action: user enable / disabled data saver using Settings |
| 1955 | // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on |
| 1956 | // or |
| 1957 | // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on |
| 1958 | // VALUE: package name of APP |
| 1959 | // CATEGORY: SETTINGS |
| 1960 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 1961 | ACTION_DATA_SAVER_WHITELIST = 395; |
| 1962 | |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 1963 | // User blacklisted an app for Data Saver mode; action pass package name of app |
| 1964 | // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off |
| 1965 | // VALUE: package name of APP |
| 1966 | // CATEGORY: SETTINGS |
| 1967 | // OS: N |
Felipe Leme | 3ff5764 | 2016-04-14 14:26:56 -0700 | [diff] [blame] | 1968 | ACTION_DATA_SAVER_BLACKLIST = 396; |
| 1969 | |
Adrian Roos | ceeb04c | 2016-04-25 14:00:54 -0700 | [diff] [blame] | 1970 | // User opened a remote input view associated with a notification. Passes package name of app |
| 1971 | // that posted the notification. Note that this can also happen transiently during notification |
| 1972 | // reinflation. |
| 1973 | ACTION_REMOTE_INPUT_OPEN = 397; |
| 1974 | |
| 1975 | // User attempt to send data through a remote input view associated with a notification. |
| 1976 | // Passes package name of app that posted the notification. May succeed or fail. |
| 1977 | ACTION_REMOTE_INPUT_SEND = 398; |
| 1978 | |
| 1979 | // Failed attempt to send data through a remote input view associated with a |
| 1980 | // notification. Passes package name of app that posted the notification. |
| 1981 | ACTION_REMOTE_INPUT_FAIL = 399; |
| 1982 | |
| 1983 | // User closed a remote input view associated with a notification. Passes package name of app |
| 1984 | // that posted the notification. Note that this can also happen transiently during notification |
| 1985 | // reinflation. |
| 1986 | ACTION_REMOTE_INPUT_CLOSE = 400; |
| 1987 | |
Tony Mak | 7a5b17bb | 2016-04-29 10:27:48 +0100 | [diff] [blame] | 1988 | // OPEN: Settings > Accounts > Work profile settings |
| 1989 | // CATEGORY: SETTINGS |
| 1990 | ACCOUNTS_WORK_PROFILE_SETTINGS = 401; |
| 1991 | |
Jason Monk | 25118d1 | 2016-05-10 13:25:50 -0400 | [diff] [blame] | 1992 | // Settings -> Dev options -> Convert to file encryption |
| 1993 | CONVERT_FBE = 402; |
| 1994 | |
| 1995 | // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT... |
| 1996 | CONVERT_FBE_CONFIRM = 403; |
| 1997 | |
| 1998 | // Settings -> Dev options -> Running services |
| 1999 | RUNNING_SERVICES = 404; |
| 2000 | |
Jason Monk | a1f697f | 2016-05-06 15:09:44 -0400 | [diff] [blame] | 2001 | // The dialog shown by 3P intent to change current webview implementation. |
| 2002 | WEBVIEW_IMPLEMENTATION = 405; |
| 2003 | |
Julia Reynolds | 8f3e66f | 2016-05-12 10:33:47 -0400 | [diff] [blame] | 2004 | // Settings launched from expanded quick settings. |
| 2005 | ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406; |
| 2006 | |
Chris Wren | 698b170 | 2016-05-23 11:16:32 -0400 | [diff] [blame] | 2007 | // Notification expansion state toggled by the expand affordance. |
| 2008 | ACTION_NOTIFICATION_EXPANDER = 407; |
| 2009 | |
| 2010 | // Notification group expansion state toggled by the expand affordance. |
| 2011 | ACTION_NOTIFICATION_GROUP_EXPANDER = 408; |
| 2012 | |
Chris Wren | 7ee8418 | 2016-05-27 13:34:02 -0400 | [diff] [blame] | 2013 | |
Chris Wren | 6abeeb9 | 2016-05-26 14:44:38 -0400 | [diff] [blame] | 2014 | // Notification expansion state toggled by the expand gesture. |
| 2015 | ACTION_NOTIFICATION_GESTURE_EXPANDER = 409; |
| 2016 | |
| 2017 | // Notification group expansion state toggled by the expand gesture. |
| 2018 | ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410; |
| 2019 | |
Bhavik Singh | 3451da4 | 2016-06-01 18:25:59 -0700 | [diff] [blame] | 2020 | // User performs gesture that activates the ambient display |
| 2021 | // 1: Gesture performed is Nudge |
| 2022 | // 2: Gesture performed is Pickup |
| 2023 | // 4: Gesture performed is Double Tap |
| 2024 | ACTION_AMBIENT_GESTURE = 411; |
| 2025 | |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2026 | // ---- End N Constants, all N constants go above this line ---- |
| 2027 | |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2028 | // ------- Begin N App Disambig Shade ----- |
| 2029 | // Application disambig shade opened or closed with a featured app. |
| 2030 | // These are actually visibility events, but visible/hidden doesn't |
| 2031 | // take a package, so these are being logged as actions. |
| 2032 | // Package: Calling app on open, called app on close |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2033 | ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451; |
| 2034 | ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2035 | |
| 2036 | // Application disambig shade opened or closed without a featured app. |
| 2037 | // These are actually visibility events, but visible/hidden doesn't |
| 2038 | // take a package, so these are being logged as actions. |
| 2039 | // Package: Calling app on open, called app on close |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2040 | ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453; |
| 2041 | ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2042 | |
| 2043 | // User opens in an app by pressing “Always” in the application disambig shade. |
| 2044 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2045 | ACTION_APP_DISAMBIG_ALWAYS = 455; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2046 | |
| 2047 | // User opens in an app by pressing “Just Once” in the application disambig shade. |
| 2048 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2049 | ACTION_APP_DISAMBIG_JUST_ONCE = 456; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2050 | |
| 2051 | // User opens in an app by tapping on its name in the application disambig shade. |
| 2052 | // Subtype: Index of selection |
Jason Monk | 9fa5f82 | 2016-05-11 10:26:31 -0400 | [diff] [blame] | 2053 | ACTION_APP_DISAMBIG_TAP = 457; |
Clara Bayarri | fa902aa | 2016-04-13 14:45:08 +0100 | [diff] [blame] | 2054 | |
Daniel Nishi | 010aa49 | 2016-05-11 09:42:24 -0700 | [diff] [blame] | 2055 | // OPEN: Settings > Internal storage > Storage manager |
| 2056 | // CATEGORY: SETTINGS |
| 2057 | STORAGE_MANAGER_SETTINGS = 458; |
| 2058 | |
Doris Ling | 5b2c0ad | 2016-05-25 14:03:14 -0700 | [diff] [blame] | 2059 | // OPEN: Settings -> Gestures |
| 2060 | // CATEGORY: SETTINGS |
| 2061 | SETTINGS_GESTURES = 459; |
| 2062 | |
Daniel Nishi | 597e67f | 2016-05-18 13:56:13 -0700 | [diff] [blame] | 2063 | // ------ Begin Deletion Helper ------ |
| 2064 | // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle |
| 2065 | // SUBTYPE: false is off, true is on |
| 2066 | // CATEGORY: SETTINGS |
| 2067 | ACTION_DELETION_SELECTION_PHOTOS = 460; |
Chris Wren | c6a9857 | 2016-06-02 15:11:48 -0400 | [diff] [blame] | 2068 | |
Daniel Nishi | 597e67f | 2016-05-18 13:56:13 -0700 | [diff] [blame] | 2069 | // ACTION: Settings > Storage > Free Up Space > Apps > Toggle |
| 2070 | // SUBTYPE: false is off, true is on |
| 2071 | // CATEGORY: SETTINGS |
| 2072 | ACTION_DELETION_SELECTION_ALL_APPS = 461; |
| 2073 | |
| 2074 | // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app |
| 2075 | // CATEGORY: SETTINGS |
| 2076 | // PACKAGE: Unchecked app |
| 2077 | ACTION_DELETION_SELECTION_APP_ON = 462; |
| 2078 | |
| 2079 | // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app |
| 2080 | // CATEGORY: SETTINGS |
| 2081 | // PACKAGE: Checked app |
| 2082 | ACTION_DELETION_SELECTION_APP_OFF = 463; |
| 2083 | |
| 2084 | // ACTION: Settings > Storage > Free Up Space > Apps > Click category |
| 2085 | // SUBTYPE: false is expanded, true is collapsed |
| 2086 | // CATEGORY: SETTINGS |
| 2087 | ACTION_DELETION_APPS_COLLAPSED = 464; |
| 2088 | |
| 2089 | // ACTION: Settings > Storage > Free Up Space > Downloads > Check On |
| 2090 | // SUBTYPE: false is off, true is on |
| 2091 | // CATEGORY: SETTINGS |
| 2092 | ACTION_DELETION_SELECTION_DOWNLOADS = 465; |
| 2093 | |
| 2094 | // ACTION: Settings > Storage > Free Up Space > Downloads > Click category |
| 2095 | // SUBTYPE: false is expanded, true is collapsed |
| 2096 | // CATEGORY: SETTINGS |
| 2097 | ACTION_DELETION_DOWNLOADS_COLLAPSED = 466; |
| 2098 | |
| 2099 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB |
| 2100 | // CATEGORY: SETTINGS |
| 2101 | ACTION_DELETION_HELPER_CLEAR = 467; |
| 2102 | |
| 2103 | // ACTION: Settings > Storage > Free Up Space > Cancel |
| 2104 | // CATEGORY: SETTINGS |
| 2105 | ACTION_DELETION_HELPER_CANCEL = 468; |
| 2106 | |
| 2107 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove |
| 2108 | // CATEGORY: SETTINGS |
| 2109 | ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469; |
| 2110 | |
| 2111 | // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel |
| 2112 | // CATEGORY: SETTINGS |
| 2113 | ACTION_DELETION_HELPER_REMOVE_CANCEL = 470; |
| 2114 | |
| 2115 | // Deletion helper encountered an error during package deletion. |
| 2116 | ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471; |
| 2117 | |
| 2118 | // Deletion helper encountered an error during downloads folder deletion. |
| 2119 | ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472; |
| 2120 | |
| 2121 | // Deletion helper encountered an error during photo and video deletion. |
| 2122 | ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473; |
| 2123 | |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2124 | // OPEN: Settings (root page if there are multiple tabs) |
| 2125 | // CATEGORY: SETTINGS |
| 2126 | DASHBOARD_CONTAINER = 474; |
| 2127 | |
| 2128 | // OPEN: Settings -> SUPPORT TAB |
| 2129 | // CATEGORY: SETTINGS |
| 2130 | SUPPORT_FRAGMENT = 475; |
| 2131 | |
| 2132 | // ACTION: Settings -> Select summary tab. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2133 | // CATEGORY: SETTINGS |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2134 | ACTION_SELECT_SUMMARY=476; |
| 2135 | |
| 2136 | // ACTION: Settings -> Select support tab. |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2137 | // CATEGORY: SETTINGS |
Fan Zhang | 5e956e8 | 2016-05-06 10:51:47 -0700 | [diff] [blame] | 2138 | ACTION_SELECT_SUPPORT_FRAGMENT = 477; |
| 2139 | |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2140 | // ACTION: Settings -> Support -> Tips & tricks |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2141 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2142 | ACTION_SUPPORT_TIPS_AND_TRICKS = 478; |
| 2143 | |
| 2144 | // ACTION: Settings -> Support -> Help & feedback |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2145 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2146 | ACTION_SUPPORT_HELP_AND_FEEDBACK = 479; |
| 2147 | |
| 2148 | // ACTION: Settings -> Support -> Sign in |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2149 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2150 | ACTION_SUPPORT_SIGN_IN = 480; |
| 2151 | |
| 2152 | // ACTION: Settings -> Support -> Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2153 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2154 | ACTION_SUPPORT_PHONE = 481; |
| 2155 | |
| 2156 | // ACTION: Settings -> Support -> Chat |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2157 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2158 | ACTION_SUPPORT_CHAT = 482; |
| 2159 | |
| 2160 | // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2161 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2162 | ACTION_SUPPORT_DISCLAIMER_CANCEL = 483; |
| 2163 | |
| 2164 | // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2165 | // CATEGORY: SETTINGS |
Fan Zhang | a198550 | 2016-06-16 16:48:38 -0700 | [diff] [blame] | 2166 | ACTION_SUPPORT_DISCLAIMER_OK = 484; |
| 2167 | |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2168 | // ACTION: Settings -> Support -> Toll-Free Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2169 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2170 | ACTION_SUPPORT_DAIL_TOLLFREE = 485; |
| 2171 | |
| 2172 | // ACTION: Settings -> Support -> "Travel Abroad" Button |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2173 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2174 | ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486; |
| 2175 | |
| 2176 | // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone |
Chris Wren | 38f9881 | 2016-07-13 14:28:40 -0400 | [diff] [blame] | 2177 | // CATEGORY: SETTINGS |
Fan Zhang | 8080721 | 2016-06-30 12:26:55 -0700 | [diff] [blame] | 2178 | ACTION_SUPPORT_DIAL_TOLLED = 487; |
| 2179 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2180 | // OPEN: Settings > Display > Night Light |
Justin Klaassen | 911e889 | 2016-06-21 18:24:24 -0700 | [diff] [blame] | 2181 | // CATEGORY: SETTINGS |
| 2182 | NIGHT_DISPLAY_SETTINGS = 488; |
| 2183 | |
Daniel Nishi | ff69a4b | 2016-07-12 13:55:57 -0700 | [diff] [blame] | 2184 | // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager |
| 2185 | // SUBTYPE: false is off, true is on |
| 2186 | ACTION_TOGGLE_STORAGE_MANAGER = 489; |
| 2187 | |
Jason Monk | 484fd36 | 2016-07-13 15:24:32 -0400 | [diff] [blame] | 2188 | // Settings launched from collapsed quick settings. |
| 2189 | ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490; |
| 2190 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2191 | // OPEN: QS Night Light tile shown |
| 2192 | // ACTION: QS Night Light tile tapped |
Justin Klaassen | 1379090 | 2016-06-21 20:28:12 -0700 | [diff] [blame] | 2193 | // SUBTYPE: 0 is off, 1 is on |
| 2194 | // CATEGORY: QUICK_SETTINGS |
| 2195 | QS_NIGHT_DISPLAY = 491; |
| 2196 | |
Justin Klaassen | 1949427 | 2016-07-18 21:38:24 -0700 | [diff] [blame] | 2197 | // Night Light on |
| 2198 | SETTINGS_CONDITION_NIGHT_DISPLAY = 492; |
| 2199 | |
Doris Ling | 3c00afb | 2016-07-19 17:04:21 -0700 | [diff] [blame] | 2200 | // System navigation key up. |
| 2201 | ACTION_SYSTEM_NAVIGATION_KEY_UP = 493; |
| 2202 | |
| 2203 | // System navigation key down. |
| 2204 | ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494; |
| 2205 | |
Doris Ling | 6dd3e46 | 2016-08-04 13:17:27 -0700 | [diff] [blame] | 2206 | // OPEN: Settings > Display -> Ambient Display |
| 2207 | // CATEGORY: SETTINGS |
| 2208 | ACTION_AMBIENT_DISPLAY = 495; |
| 2209 | |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 2210 | // ---- End N-MR1 Constants, all N-MR1 constants go above this line ---- |
| 2211 | |
Clara Bayarri | c17a598 | 2016-04-15 12:26:47 +0100 | [diff] [blame] | 2212 | // ------- Begin N Keyboard Shortcuts Helper ----- |
| 2213 | // Keyboard Shortcuts Helper is opened/closed. |
Chris Wren | e7396ff | 2016-06-02 17:08:21 -0400 | [diff] [blame] | 2214 | KEYBOARD_SHORTCUTS_HELPER = 500; |
Clara Bayarri | c17a598 | 2016-04-15 12:26:47 +0100 | [diff] [blame] | 2215 | |
Philip P. Moltmann | 2e30126 | 2016-06-16 12:39:54 -0700 | [diff] [blame] | 2216 | // OPEN: Print Preview screen |
| 2217 | // Package: Package of app where print job is from |
| 2218 | PRINT_PREVIEW = 501; |
| 2219 | |
| 2220 | // OPEN: User expands full print job options shade in print preview. |
| 2221 | PRINT_JOB_OPTIONS = 502; |
| 2222 | |
| 2223 | // OPEN: “All Printers” screen for selecting printer |
| 2224 | // Subtype: # of printers listed |
| 2225 | PRINT_ALL_PRINTERS = 503; |
| 2226 | |
| 2227 | // OPEN: “Add Printers” screen for adding printers |
| 2228 | // Subtype: # of enabled print service listed |
| 2229 | PRINT_ADD_PRINTERS = 504; |
| 2230 | |
| 2231 | // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview) |
| 2232 | // Package: Package of print service. |
| 2233 | ACTION_PRINT = 505; |
| 2234 | |
| 2235 | // ACTION: User selects a printer from the dropdown in the print preview screen. This also |
| 2236 | // Count all ACTION_PRINTER_SELECT_ALL actions. |
| 2237 | // Package: Package of print service tied to printer |
| 2238 | ACTION_PRINTER_SELECT_DROPDOWN = 506; |
| 2239 | |
| 2240 | // ACTION: User selects a printer from the “All printers” screen. |
| 2241 | // Package: Package of print service tied to printer |
| 2242 | ACTION_PRINTER_SELECT_ALL = 507; |
| 2243 | |
| 2244 | // ACTION: User changes an option for the print job from print preview. |
| 2245 | // Subtype: 1: Copies |
| 2246 | // 2: Color mode |
| 2247 | // 3: Duplex mode |
| 2248 | // 4: Media (==Paper) size |
| 2249 | // 5: Orientation |
| 2250 | // 6: Page range |
| 2251 | // Package: Package of print service tied to printer |
| 2252 | ACTION_PRINT_JOB_OPTIONS = 508; |
| 2253 | |
| 2254 | // ACTION: User searches for printer from All Printers |
| 2255 | ACTION_PRINTER_SEARCH = 509; |
| 2256 | |
| 2257 | // ACTION: User selects “Add print service” button from All Printers |
| 2258 | ACTION_PRINT_SERVICE_ADD = 510; |
| 2259 | |
| 2260 | // ACTION: User Enables/Disables Print Service via any means. |
| 2261 | // Subtype: 0: Enabled |
| 2262 | // 1: Disabled |
| 2263 | ACTION_PRINT_SERVICE_TOGGLE = 511; |
| 2264 | |
| 2265 | // ACTION: User installs print recommended print service |
| 2266 | // Package: Package of print service |
| 2267 | ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512; |
| 2268 | |
Doris Ling | 88a6b16 | 2016-08-08 16:17:43 -0700 | [diff] [blame] | 2269 | // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support |
| 2270 | // SUBTYPE: sub settings classname |
| 2271 | ACTION_SETTING_HELP_AND_FEEDBACK = 513; |
| 2272 | |
Fan Zhang | 92c6038 | 2016-08-08 14:03:53 -0700 | [diff] [blame^] | 2273 | // OPEN: Settings > Language & input > Personal dictionary (single locale) |
| 2274 | USER_DICTIONARY_SETTINGS = 514; |
| 2275 | |
| 2276 | // OPEN: Settings > Date & time > Select time zone |
| 2277 | ZONE_PICKER = 515; |
| 2278 | |
| 2279 | // OPEN: Settings > Security > Device administrators |
| 2280 | DEVICE_ADMIN_SETTINGS = 516; |
| 2281 | |
Philip P. Moltmann | 2e30126 | 2016-06-16 12:39:54 -0700 | [diff] [blame] | 2282 | // ---- End O Constants, all O constants go above this line ---- |
| 2283 | |
Adrian Roos | 159ef7b | 2016-02-25 11:58:32 -0800 | [diff] [blame] | 2284 | // Add new aosp constants above this line. |
| 2285 | // END OF AOSP CONSTANTS |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 2286 | } |
| 2287 | } |