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