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 // The action results an error. 78 TYPE_ERROR = 15; 79 80 // The notification was adjusted by the assistant. Enum value is 81 // out of sequence due to b/122737498. 82 TYPE_NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573; 83 } 84 85 // Types of alerts, as bit field values 86 enum Alert { 87 // Vibrate the device. 88 ALERT_BUZZ = 1; 89 90 // Make sound through the speaker. 91 ALERT_BEEP = 2; 92 93 // Flash a notification light. 94 ALERT_BLINK = 4; 95 96 // Alert was attenuated by polite notif. feature. 97 ALERT_POLITE = 8; 98 99 // Alert was muted by polite notif. feature. 100 ALERT_MUTED = 16; 101 } 102 103 // Reasons that a notification might be dismissed. 104 enum DismissReason { 105 // from android.service.notification.NotificationListenerService 106 107 // Notification was canceled by the status bar reporting a notification click 108 REASON_CLICK = 1; 109 110 // Notification was canceled by the status bar reporting a user dismissal. 111 REASON_CANCEL = 2; 112 113 // Notification was canceled by the status bar reporting a user dismiss all. 114 REASON_CANCEL_ALL = 3; 115 116 // Notification was canceled by the status bar reporting an inflation error. 117 REASON_ERROR = 4; 118 119 // Notification was canceled by the package manager modifying the package. 120 REASON_PACKAGE_CHANGED = 5; 121 122 // Notification was canceled by the owning user context being stopped. 123 REASON_USER_STOPPED = 6; 124 125 // Notification was canceled by the user banning the package. 126 REASON_PACKAGE_BANNED = 7; 127 128 // Notification was canceled by the app canceling this specific notification. 129 REASON_APP_CANCEL = 8; 130 131 //Notification was canceled by the app cancelling all its notifications. 132 REASON_APP_CANCEL_ALL = 9; 133 134 // Notification was canceled by a listener reporting a user dismissal. 135 REASON_LISTENER_CANCEL = 10; 136 137 //Notification was canceled by a listener reporting a user dismiss all. 138 REASON_LISTENER_CANCEL_ALL = 11; 139 140 // Notification was canceled because it was a member of a canceled group. 141 REASON_GROUP_SUMMARY_CANCELED = 12; 142 143 // Notification was canceled because it was an invisible member of a group. 144 REASON_GROUP_OPTIMIZATION = 13; 145 146 // Notification was canceled by the device administrator suspending the package. 147 REASON_PACKAGE_SUSPENDED = 14; 148 149 // Notification was canceled by the owning managed profile being turned off. 150 REASON_PROFILE_TURNED_OFF = 15; 151 152 // Autobundled summary notification was canceled because its group was unbundled. 153 REASON_UNAUTOBUNDLED = 16; 154 155 // Notification was canceled by the user banning the channel. 156 REASON_CHANNEL_BANNED = 17; 157 158 // Notification was snoozed. 159 REASON_SNOOZED = 18; 160 161 // Notification was canceled due to timeout. 162 REASON_TIMEOUT = 19; 163 } 164 165 // Subtypes of camera events for ACTION_CAMERA_EVENT 166 enum CameraEvent { 167 // A back-facing camera was used 168 CAMERA_BACK_USED = 0; 169 170 // A front-facing camera was used 171 CAMERA_FRONT_USED = 1; 172 173 // An external camera was used 174 CAMERA_EXTERNAL_USED = 2; 175 } 176 177 // TextClassifier entity types. 178 enum TextClassifierEntityType { 179 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1; 180 TEXT_CLASSIFIER_TYPE_OTHER = 2; 181 TEXT_CLASSIFIER_TYPE_EMAIL = 3; 182 TEXT_CLASSIFIER_TYPE_PHONE = 4; 183 TEXT_CLASSIFIER_TYPE_ADDRESS = 5; 184 TEXT_CLASSIFIER_TYPE_URL = 6; 185 } 186 187 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events. 188 enum TextSelectionInvocationMethod { 189 TEXT_SELECTION_INVOCATION_UNKNOWN = 0; 190 TEXT_SELECTION_INVOCATION_MANUAL = 1; 191 TEXT_SELECTION_INVOCATION_LINK = 2; 192 } 193 194 // Access method for hidden API events. Type of data tagged with 195 // FIELD_HIDDEN_API_ACCESS_METHOD. 196 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h 197 enum HiddenApiAccessMethod { 198 ACCESS_METHOD_NONE = 0; // never logged, included for completeness 199 ACCESS_METHOD_REFLECTION = 1; 200 ACCESS_METHOD_JNI = 2; 201 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness 202 } 203 204 enum HardwareType { 205 HARDWARE_UNKNOWN = 0; 206 HARDWARE_MICROPHONE = 1; 207 HARDWARE_CODEC = 2; 208 HARDWARE_SPEAKER = 3; 209 HARDWARE_FINGERPRINT = 4; 210 } 211 212 enum HardwareFailureCode { 213 HARDWARE_FAILURE_UNKNOWN = 0; 214 HARDWARE_FAILURE_COMPLETE = 1; 215 HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2; 216 HARDWARE_FAILURE_SPEAKER_SHORT = 3; 217 HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4; 218 HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5; 219 } 220 221 enum IoOperation { 222 IOOP_UNKNOWN = 0; 223 IOOP_READ = 1; 224 IOOP_WRITE = 2; 225 IOOP_UNMAP = 3; 226 IOOP_SYNC = 4; 227 } 228 229 // Subtypes of notifications blocking helper view 230 // (NOTIFICATION_BLOCKING_HELPER). 231 enum NotificationBlockingHelper { 232 BLOCKING_HELPER_UNKNOWN = 0; 233 BLOCKING_HELPER_DISPLAY = 1; 234 BLOCKING_HELPER_DISMISS = 2; 235 // When the view of the notification blocking helper was triggered by 236 // system. 237 BLOCKING_HELPER_TRIGGERED_BY_SYSTEM = 3; 238 // "block" was clicked. 239 BLOCKING_HELPER_CLICK_BLOCKED = 4; 240 // "stay silent" was clicked. 241 BLOCKING_HELPER_CLICK_STAY_SILENT = 5; 242 // "alert me" was clicked. 243 BLOCKING_HELPER_CLICK_ALERT_ME = 6; 244 // "undo" was clicked (enables the user to undo "stop notification" action). 245 BLOCKING_HELPER_CLICK_UNDO = 7; 246 } 247 248 // The (visual) location of a Notification. 249 enum NotificationLocation { 250 LOCATION_UNKNOWN = 0; 251 LOCATION_FIRST_HEADS_UP = 1; // visible heads-up 252 LOCATION_HIDDEN_TOP = 2; // hidden/scrolled away on the top 253 LOCATION_MAIN_AREA = 3; // visible in the shade 254 LOCATION_BOTTOM_STACK_PEEKING = 4; // in the bottom stack, and peeking 255 LOCATION_BOTTOM_STACK_HIDDEN = 5; // in the bottom stack, and hidden 256 LOCATION_GONE = 6; // the view isn't laid out at all 257 } 258 259 // Subtypes for profile logging 260 enum ActiveUserProfile { 261 PARENT_PROFILE = 1; 262 MANAGED_PROFILE = 2; 263 } 264 265 // Subtypes for showing direct sharing targets 266 enum DirectShareTargetPreviousState { 267 PREVIOUSLY_UNKNOWN = 0; 268 PREVIOUSLY_HIDDEN = 1; 269 PREVIOUSLY_VISIBLE = 2; 270 } 271 272 // Types for ACTION_SHORTCUTS_CHANGED 273 enum ShortcutsChangesInfo { 274 SHORTCUTS_CHANGED_UNKNOWN = 0; 275 SHORTCUTS_CHANGED_USER_ID = 1; 276 SHORTCUTS_CHANGED_PACKAGE_COUNT = 2; 277 SHORTCUTS_CHANGED_SHORTCUT_COUNT = 3; 278 } 279 280 // Explanations for notification importance, derived from 281 // NotificationRecord.mImportanceExplanation. 282 enum NotificationImportanceExplanation { 283 IMPORTANCE_EXPLANATION_UNKNOWN = 0; 284 IMPORTANCE_EXPLANATION_APP = 1; // App-specified channel importance. 285 IMPORTANCE_EXPLANATION_USER = 2; // User-specified channel importance. 286 IMPORTANCE_EXPLANATION_ASST = 3; // Notification Assistant override. 287 IMPORTANCE_EXPLANATION_SYSTEM = 4; // System override. 288 // Like _APP, but based on pre-channels priority signal. 289 IMPORTANCE_EXPLANATION_APP_PRE_CHANNELS = 5; 290 } 291 292 // Known visual elements: views or controls. 293 enum View { 294 // Unknown view 295 VIEW_UNKNOWN = 0; 296 297 // OBSOLETE 298 MAIN_SETTINGS = 1; 299 300 // OPEN: Settings > Accessibility 301 // CATEGORY: SETTINGS 302 // OS: 6.0 303 ACCESSIBILITY = 2; 304 305 // OPEN: Settings > Accessibility > Captions 306 // CATEGORY: SETTINGS 307 // OS: 6.0 308 ACCESSIBILITY_CAPTION_PROPERTIES = 3; 309 310 // OPEN: Settings > Accessibility > [Service] 311 // CATEGORY: SETTINGS 312 // OS: 6.0 313 ACCESSIBILITY_SERVICE = 4; 314 315 // OPEN: Settings > Accessibility > Color correction 316 // CATEGORY: SETTINGS 317 // OS: 6.0 318 ACCESSIBILITY_TOGGLE_DALTONIZER = 5; 319 320 // OPEN: Settings > Accessibility > Accessibility shortcut 321 // CATEGORY: SETTINGS 322 // OS: 6.0 323 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6; 324 325 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O) 326 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap 327 // OPEN: Settings > Accessibility > Magnification > Magnify with button 328 // CATEGORY: SETTINGS 329 // OS: 6.0 330 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7; 331 332 // OPEN: Settings > Accounts 333 // CATEGORY: SETTINGS 334 // OS: 6.0 335 ACCOUNT = 8; 336 337 // OPEN: Settings > Accounts > [Single Account Sync Settings] 338 // CATEGORY: SETTINGS 339 // OS: 6.0 340 ACCOUNTS_ACCOUNT_SYNC = 9; 341 342 // OPEN: Settings > Accounts > Add an account 343 // CATEGORY: SETTINGS 344 // OS: 6.0 345 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10; 346 347 // OPEN: Settings > Accounts > [List of accounts when more than one] 348 // CATEGORY: SETTINGS 349 // OS: 6.0 350 ACCOUNTS_MANAGE_ACCOUNTS = 11; 351 352 // OPEN: Settings > Cellular network settings > APNs 353 // CATEGORY: SETTINGS 354 // OS: 6.0 355 APN = 12; 356 357 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN] 358 // CATEGORY: SETTINGS 359 // OS: 6.0 360 APN_EDITOR = 13; 361 362 // OBSOLETE 363 APP_OPS_DETAILS = 14; 364 365 // OBSOLETE 366 APP_OPS_SUMMARY = 15; 367 368 // OBSOLETE 369 APPLICATION = 16; 370 371 // OPEN: Settings > Apps > Configure apps > App links > [App] 372 // CATEGORY: SETTINGS 373 // OS: 6.0 374 APPLICATIONS_APP_LAUNCH = 17; 375 376 // OBSOLETE 377 APPLICATIONS_APP_PERMISSION = 18; 378 379 // OPEN: Settings > Internal storage > Apps storage > [App] 380 // CATEGORY: SETTINGS 381 // OS: 6.0 382 APPLICATIONS_APP_STORAGE = 19; 383 384 // OPEN: Settings > Apps > [App info] 385 // CATEGORY: SETTINGS 386 // OS: 6.0 387 APPLICATIONS_INSTALLED_APP_DETAILS = 20; 388 389 // OPEN: Settings > Memory > App usage > [App Memory usage] 390 // CATEGORY: SETTINGS 391 // OS: 6.0 392 APPLICATIONS_PROCESS_STATS_DETAIL = 21; 393 394 // OBSOLETE 395 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22; 396 397 // OPEN: Settings > Memory > App usage 398 // CATEGORY: SETTINGS 399 // OS: 6.0 400 APPLICATIONS_PROCESS_STATS_UI = 23; 401 402 // OPEN: Settings > Bluetooth 403 // CATEGORY: SETTINGS 404 // OS: 6.0 405 BLUETOOTH = 24; 406 407 // OPEN: Choose Bluetooth device (ex: when sharing) 408 // CATEGORY: SETTINGS 409 // OS: 6.0 410 BLUETOOTH_DEVICE_PICKER = 25; 411 412 // OBSOLETE 413 BLUETOOTH_DEVICE_PROFILES = 26; 414 415 // OPEN: Settings > Security > Choose screen lock 416 // CATEGORY: SETTINGS 417 // OS: 6.0 418 CHOOSE_LOCK_GENERIC = 27; 419 420 // OPEN: Settings > Security > Choose screen lock > Choose your password 421 // CATEGORY: SETTINGS 422 // OS: 6.0 423 CHOOSE_LOCK_PASSWORD = 28; 424 425 // OPEN: Settings > Security > Choose screen lock > Choose your pattern 426 // CATEGORY: SETTINGS 427 // OS: 6.0 428 CHOOSE_LOCK_PATTERN = 29; 429 430 // OPEN: Settings > Security > Choose screen lock > Confirm your password 431 // CATEGORY: SETTINGS 432 // OS: 6.0 433 CONFIRM_LOCK_PASSWORD = 30; 434 435 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern 436 // CATEGORY: SETTINGS 437 // OS: 6.0 438 CONFIRM_LOCK_PATTERN = 31; 439 440 // OPEN: Settings > Security > Encrypt phone 441 // CATEGORY: SETTINGS 442 // OS: 6.0 443 CRYPT_KEEPER = 32; 444 445 // OPEN: Settings > Security > Encrypt phone > Confirm 446 // CATEGORY: SETTINGS 447 // OS: 6.0 448 CRYPT_KEEPER_CONFIRM = 33; 449 450 // OPEN: Settings > Search results 451 // CATEGORY: SETTINGS 452 // OS: 6.0 453 DASHBOARD_SEARCH_RESULTS = 34; 454 455 // OPEN: Settings (Root page) 456 // CATEGORY: SETTINGS 457 // OS: 6.0 458 DASHBOARD_SUMMARY = 35; 459 460 // OBSOLETE 461 DATA_USAGE = 36; 462 463 // OPEN: Settings > Data usage 464 // CATEGORY: SETTINGS 465 // OS: 6.0 466 DATA_USAGE_SUMMARY = 37; 467 468 // OPEN: Settings > Date & time 469 // CATEGORY: SETTINGS 470 // OS: 6.0 471 DATE_TIME = 38; 472 473 // OPEN: Settings > Developer options 474 // CATEGORY: SETTINGS 475 // OS: 6.0 476 DEVELOPMENT = 39; 477 478 // OPEN: Settings > About phone 479 // CATEGORY: SETTINGS 480 // OS: 6.0 481 DEVICEINFO = 40; 482 483 // OPEN: Settings > About phone > Status > IMEI information 484 // CATEGORY: SETTINGS 485 // OS: 6.0 486 DEVICEINFO_IMEI_INFORMATION = 41; 487 488 // OPEN: Settings > Internal storage 489 // CATEGORY: SETTINGS 490 // OS: 6.0 491 DEVICEINFO_STORAGE = 42; 492 493 // OPEN: Settings > About phone > Status > SIM status 494 // CATEGORY: SETTINGS 495 // OS: 6.0 496 DEVICEINFO_SIM_STATUS = 43; 497 498 // OPEN: Settings > About phone > Status 499 // CATEGORY: SETTINGS 500 // OS: 6.0 501 DEVICEINFO_STATUS = 44; 502 503 // OBSOLETE 504 DEVICEINFO_USB = 45; 505 506 // OPEN: Settings > Display 507 // CATEGORY: SETTINGS 508 // OS: 6.0 509 DISPLAY = 46; 510 511 // OPEN: Settings > Display > Daydream 512 // CATEGORY: SETTINGS 513 // OS: 6.0 514 DREAM = 47; 515 516 // OPEN: Settings > Security > Screen lock > Secure start-up 517 // CATEGORY: SETTINGS 518 // OS: 6.0 519 ENCRYPTION = 48; 520 521 // OPEN: Settings > Security > Nexus Imprint 522 // CATEGORY: SETTINGS 523 // OS: 6.0 524 FINGERPRINT = 49; 525 526 // OBSOLETE 527 FINGERPRINT_ENROLL = 50; 528 529 // OPEN: Settings > Battery > History details 530 // CATEGORY: SETTINGS 531 // OS: 6.0 532 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51; 533 534 // OPEN: Settings > Battery > Battery saver 535 // CATEGORY: SETTINGS 536 // OS: 6.0 537 FUELGAUGE_BATTERY_SAVER = 52; 538 539 // OPEN: Settings > Battery > [App Use details] 540 // CATEGORY: SETTINGS 541 // OS: 6.0 542 FUELGAUGE_POWER_USAGE_DETAIL = 53; 543 544 // OPEN: Settings > Battery 545 // CATEGORY: SETTINGS 546 // OS: 6.0 547 FUELGAUGE_POWER_USAGE_SUMMARY = 54; 548 549 // OPEN: Settings > Home 550 // CATEGORY: SETTINGS 551 // OS: 6.0 552 HOME = 55; 553 554 // OPEN: Settings > Security > SIM card lock settings 555 // CATEGORY: SETTINGS 556 // OS: 6.0 557 ICC_LOCK = 56; 558 559 // OPEN: Settings > Language & input 560 // CATEGORY: SETTINGS 561 // OS: 6.0 562 INPUTMETHOD_LANGUAGE = 57; 563 564 // OPEN: Settings > Language & input > Physical keyboard 565 // CATEGORY: SETTINGS 566 // OS: 6.0 567 INPUTMETHOD_KEYBOARD = 58; 568 569 // OPEN: Settings > Language & input > Spell checker 570 // CATEGORY: SETTINGS 571 // OS: 6.0 572 INPUTMETHOD_SPELL_CHECKERS = 59; 573 574 // OBSOLETE 575 INPUTMETHOD_SUBTYPE_ENABLER = 60; 576 577 // OPEN: Settings > Language & input > Personal dictionary 578 // CATEGORY: SETTINGS 579 // OS: 6.0 580 INPUTMETHOD_USER_DICTIONARY = 61; 581 582 // OPEN: Settings > Language & input > Add word 583 // CATEGORY: SETTINGS 584 // OS: 6.0 585 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62; 586 587 // OPEN: Settings > Location 588 // CATEGORY: SETTINGS 589 // OS: 6.0 590 LOCATION = 63; 591 592 // OPEN: Settings > Location > Location mode 593 // CATEGORY: SETTINGS 594 // OS: 6.0 595 LOCATION_MODE = 64; 596 597 // OPEN: Settings > Apps 598 // CATEGORY: SETTINGS 599 // OS: 6.0 600 MANAGE_APPLICATIONS = 65; 601 602 // OPEN: Settings > Backup & reset > Factory data reset 603 // CATEGORY: SETTINGS 604 // OS: 6.0 605 MASTER_CLEAR = 66; 606 607 // OPEN: Settings > Backup & reset > Factory data reset > Confirm 608 // CATEGORY: SETTINGS 609 // OS: 6.0 610 MASTER_CLEAR_CONFIRM = 67; 611 612 // OPEN: Settings > Data usage > Network restrictions 613 // CATEGORY: SETTINGS 614 // OS: 6.0 615 NET_DATA_USAGE_METERED = 68; 616 617 // OPEN: Settings > More > Android Beam 618 // CATEGORY: SETTINGS 619 // OS: 6.0 620 NFC_BEAM = 69; 621 622 // OPEN: Settings > Tap & pay 623 // CATEGORY: SETTINGS 624 // OS: 6.0 625 NFC_PAYMENT = 70; 626 627 // OPEN: Settings > Sound & notification 628 // CATEGORY: SETTINGS 629 // OS: 6.0 630 NOTIFICATION = 71; 631 632 // OPEN: Settings > Sound & notification > App notifications > [App] 633 // CATEGORY: SETTINGS 634 // OS: 6.0 635 NOTIFICATION_APP_NOTIFICATION = 72; 636 637 // OPEN: Settings > Sound & notification > Other sounds 638 // CATEGORY: SETTINGS 639 // OS: 6.0 640 NOTIFICATION_OTHER_SOUND = 73; 641 642 // OBSOLETE 643 NOTIFICATION_REDACTION = 74; 644 645 // OPEN: Settings Widget > Notification log 646 // CATEGORY: SETTINGS 647 // OS: 6.0 648 NOTIFICATION_STATION = 75; 649 650 // OPEN: Settings > Sound & notification > Do not disturb 651 // CATEGORY: SETTINGS 652 // OS: 6.0 653 NOTIFICATION_ZEN_MODE = 76; 654 655 // OPEN: OBSOLETE 656 OWNER_INFO = 77; 657 658 // OPEN: Print job notification > Print job settings 659 // CATEGORY: SETTINGS 660 // OS: 6.0 661 PRINT_JOB_SETTINGS = 78; 662 663 // OPEN: Settings > Printing > [Print Service] 664 // CATEGORY: SETTINGS 665 // OS: 6.0 666 PRINT_SERVICE_SETTINGS = 79; 667 668 // OPEN: Settings > Printing 669 // CATEGORY: SETTINGS 670 // OS: 6.0 671 PRINT_SETTINGS = 80; 672 673 // OPEN: Settings > Backup & reset 674 // CATEGORY: SETTINGS 675 // OS: 6.0 676 PRIVACY = 81; 677 678 //OBSOLETE 679 PROXY_SELECTOR = 82; 680 681 // OPEN: Settings > Backup & reset > Network settings reset 682 // CATEGORY: SETTINGS 683 // OS: 6.0 684 RESET_NETWORK = 83; 685 686 // OPEN: Settings > Backup & reset > Network settings reset > Confirm 687 // CATEGORY: SETTINGS 688 // OS: 6.0 689 RESET_NETWORK_CONFIRM = 84; 690 691 // OPEN: Settings > Developer Options > Running Services 692 // CATEGORY: SETTINGS 693 // OS: 6.0 694 RUNNING_SERVICE_DETAILS = 85; 695 696 // OPEN: Settings > Security > Screen pinning 697 // CATEGORY: SETTINGS 698 // OS: 6.0 699 SCREEN_PINNING = 86; 700 701 // OPEN: Settings > Security 702 // CATEGORY: SETTINGS 703 // OS: 6.0 704 SECURITY = 87; 705 706 // OPEN: Settings > SIM cards 707 // CATEGORY: SETTINGS 708 // OS: 6.0 709 SIM = 88; 710 711 // OBSOLETE 712 TESTING = 89; 713 714 // OPEN: Settings > More > Tethering & portable hotspot 715 // CATEGORY: SETTINGS 716 // OS: 6.0 717 TETHER = 90; 718 719 // OPEN: Settings > Security > Trust agents 720 // CATEGORY: SETTINGS 721 // OS: 6.0 722 TRUST_AGENT = 91; 723 724 // OPEN: Settings > Security > Trusted credentials 725 // CATEGORY: SETTINGS 726 // OS: 6.0 727 TRUSTED_CREDENTIALS = 92; 728 729 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings 730 // CATEGORY: SETTINGS 731 // OS: 6.0 732 TTS_ENGINE_SETTINGS = 93; 733 734 // OPEN: Settings > Language & input > Text-to-speech output 735 // CATEGORY: SETTINGS 736 // OS: 6.0 737 TTS_TEXT_TO_SPEECH = 94; 738 739 // OPEN: Settings > Security > Apps with usage access 740 // CATEGORY: SETTINGS 741 // OS: 6.0 742 USAGE_ACCESS = 95; 743 744 // OPEN: Settings > Users 745 // CATEGORY: SETTINGS 746 // OS: 6.0 747 USER = 96; 748 749 // OPEN: Settings > Users > [Restricted profile app & content access] 750 // CATEGORY: SETTINGS 751 // OS: 6.0 752 USERS_APP_RESTRICTIONS = 97; 753 754 // OPEN: Settings > Users > [User settings] 755 // CATEGORY: SETTINGS 756 // OS: 6.0 757 USER_DETAILS = 98; 758 759 // OBSOLETE 760 VOICE_INPUT = 99; 761 762 // OPEN: Settings > More > VPN 763 // CATEGORY: SETTINGS 764 // OS: 6.0 765 VPN = 100; 766 767 // OPEN: Settings > Display > Choose wallpaper from 768 // CATEGORY: SETTINGS 769 // OS: 6.0 770 WALLPAPER_TYPE = 101; 771 772 // OPEN: Settings > Display > Cast 773 // CATEGORY: SETTINGS 774 // OS: 6.0 775 WFD_WIFI_DISPLAY = 102; 776 777 // OPEN: Settings > Wi-Fi 778 // CATEGORY: SETTINGS 779 // OS: 6.0 780 WIFI = 103; 781 782 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi 783 // CATEGORY: SETTINGS 784 // OS: 6.0 785 WIFI_ADVANCED = 104; 786 787 // OPEN: Settings > More > Wi-Fi Calling 788 // CATEGORY: SETTINGS 789 // OS: 6.0 790 WIFI_CALLING = 105; 791 792 // OPEN: Settings > Wi-Fi > Saved networks 793 // CATEGORY: SETTINGS 794 // OS: 6.0 795 WIFI_SAVED_ACCESS_POINTS = 106; 796 797 // OBSOLETE 798 WIFI_APITEST = 107; 799 800 // OBSOLETE 801 WIFI_INFO = 108; 802 803 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct 804 // CATEGORY: SETTINGS 805 // OS: 6.0 806 WIFI_P2P = 109; 807 808 // OPEN: Settings > More 809 // CATEGORY: SETTINGS 810 // OS: 6.0 811 WIRELESS = 110; 812 813 // OPEN: Quick Settings Panel 814 // CATEGORY: QUICK_SETTINGS 815 // OS: 6.0 816 QS_PANEL = 111; 817 818 // OPEN: QS Airplane mode tile shown 819 // ACTION: QS Airplane mode tile tapped 820 // SUBTYPE: 0 is off, 1 is on 821 // CATEGORY: QUICK_SETTINGS 822 // OS: 6.0 823 QS_AIRPLANEMODE = 112; 824 825 // OPEN: QS Bluetooth tile shown 826 // ACTION: QS Bluetooth tile tapped 827 // SUBTYPE: 0 is off, 1 is on 828 // CATEGORY: QUICK_SETTINGS 829 // OS: 6.0 830 QS_BLUETOOTH = 113; 831 832 // OPEN: QS Cast tile shown 833 // ACTION: QS Cast tile tapped 834 // CATEGORY: QUICK_SETTINGS 835 // OS: 6.0 836 QS_CAST = 114; 837 838 // OPEN: QS Cellular tile shown 839 // ACTION: QS Cellular tile tapped 840 // CATEGORY: QUICK_SETTINGS 841 // OS: 6.0 842 QS_CELLULAR = 115; 843 844 // OPEN: QS Color inversion tile shown 845 // ACTION: QS Color inversion tile tapped 846 // SUBTYPE: 0 is off, 1 is on 847 // CATEGORY: QUICK_SETTINGS 848 // OS: 6.0 849 QS_COLORINVERSION = 116; 850 851 // OPEN: QS Cellular tile > Cellular detail panel 852 // CATEGORY: QUICK_SETTINGS 853 // OS: 6.0 854 QS_DATAUSAGEDETAIL = 117; 855 856 // OPEN: QS Do not disturb tile shown 857 // ACTION: QS Do not disturb tile tapped 858 // SUBTYPE: 0 is off, 1 is on 859 // CATEGORY: QUICK_SETTINGS 860 // OS: 6.0 861 QS_DND = 118; 862 863 // OPEN: QS Flashlight tile shown 864 // ACTION: QS Flashlight tile tapped 865 // SUBTYPE: 0 is off, 1 is on 866 // CATEGORY: QUICK_SETTINGS 867 // OS: 6.0 868 QS_FLASHLIGHT = 119; 869 870 // OPEN: QS Hotspot tile shown 871 // ACTION: QS Hotspot tile tapped 872 // SUBTYPE: 0 is off, 1 is on 873 // CATEGORY: QUICK_SETTINGS 874 // OS: 6.0 875 QS_HOTSPOT = 120; 876 877 // OPEN: QS 3P tile shown 878 // ACTION: QS 3P tile tapped 879 // CATEGORY: QUICK_SETTINGS 880 // OS: 6.0 881 QS_INTENT = 121; 882 883 // OPEN: QS Location tile shown 884 // ACTION: QS Location tile tapped 885 // SUBTYPE: 0 is off, 1 is on 886 // CATEGORY: QUICK_SETTINGS 887 // OS: 6.0 888 QS_LOCATION = 122; 889 890 // OPEN: QS Rotation tile shown 891 // ACTION: QS Rotation tile tapped 892 // SUBTYPE: 0 is off, 1 is on 893 // CATEGORY: QUICK_SETTINGS 894 // OS: 6.0 895 QS_ROTATIONLOCK = 123; 896 897 // OBSOLETE 898 QS_USERDETAILITE = 124; 899 900 // OPEN: QS User list panel 901 // CATEGORY: QUICK_SETTINGS 902 // OS: 6.0 903 QS_USERDETAIL = 125; 904 905 // OPEN: QS WiFi tile shown 906 // ACTION: QS WiFi tile tapped 907 // SUBTYPE: 0 is off, 1 is on 908 // CATEGORY: QUICK_SETTINGS 909 // OS: 6.0 910 QS_WIFI = 126; 911 912 // OPEN: Notification Panel (including lockscreen) 913 // CATEGORY: NOTIFICATION 914 // OS: 5.1.1 915 NOTIFICATION_PANEL = 127; 916 917 // OPEN: Notification in panel became visible. 918 // PACKAGE: App that posted the notification. 919 // ACTION: Notification is tapped. 920 // PACKAGE: App that posted the notification 921 // DETAIL: Notification is expanded by user. 922 // PACKAGE: App that posted the notification 923 // COLLAPSE: Notification is collapsed by user. 924 // PACKAGE: App that posted the notification 925 // DISMISS: Notification is dismissed. 926 // PACKAGE: App that posted the notification 927 // SUBTYPE: Dismiss reason from NotificationManagerService.java 928 // CATEGORY: NOTIFICATION 929 // OS: 5.1.1 930 NOTIFICATION_ITEM = 128; 931 932 // ACTION: User tapped notification action 933 // PACKAGE: App that posted the notification 934 // SUBTYPE: Index of action on notification 935 // CATEGORY: NOTIFICATION 936 // OS: 5.0 937 NOTIFICATION_ITEM_ACTION = 129; 938 939 // OPEN: Settings > Apps > Configure apps > App permissions 940 // CATEGORY: SETTINGS 941 // OS: 6.0 942 APPLICATIONS_ADVANCED = 130; 943 944 // OPEN: Settings > Location > Scanning 945 // CATEGORY: SETTINGS 946 // OS: 6.0 947 LOCATION_SCANNING = 131; 948 949 // OBSOLETE 950 MANAGE_APPLICATIONS_ALL = 132; 951 952 // OPEN: Settings > Sound & notification > App notifications 953 // CATEGORY: SETTINGS 954 // OS: 6.0 955 MANAGE_APPLICATIONS_NOTIFICATIONS = 133; 956 957 // ACTION: Settings > Wi-Fi > Overflow > Add Network 958 // CATEGORY: SETTINGS 959 // OS: 6.0 960 ACTION_WIFI_ADD_NETWORK = 134; 961 962 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network 963 // SUBTYPE: true if connecting to a saved network, false if not 964 // CATEGORY: SETTINGS 965 // OS: 6.0 966 ACTION_WIFI_CONNECT = 135; 967 968 // ACTION: Settings > Wi-Fi > Overflow > Refresh 969 // CATEGORY: SETTINGS 970 // OS: 6.0 971 ACTION_WIFI_FORCE_SCAN = 136; 972 973 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network 974 // CATEGORY: SETTINGS 975 // OS: 6.0 976 ACTION_WIFI_FORGET = 137; 977 978 // ACTION: Settings > Wi-Fi > Toggle off 979 // SUBTYPE: true if connected to network before toggle, false if not 980 // CATEGORY: SETTINGS 981 // OS: 6.0 982 ACTION_WIFI_OFF = 138; 983 984 // ACTION: Settings > Wi-Fi > Toggle on 985 // CATEGORY: SETTINGS 986 // OS: 6.0 987 ACTION_WIFI_ON = 139; 988 989 // OBSOLETE 990 MANAGE_PERMISSIONS = 140; 991 992 // OPEN: Settings > Sound & notification > DND > Priority only allows 993 // CATEGORY: SETTINGS 994 // OS: 6.0 995 NOTIFICATION_ZEN_MODE_PRIORITY = 141; 996 997 // OPEN: Settings > Sound & notification > DND > Automatic rules 998 // CATEGORY: SETTINGS 999 // OS: 6.0 1000 NOTIFICATION_ZEN_MODE_AUTOMATION = 142; 1001 1002 // OPEN: Settings > Apps > Configure apps > App links 1003 // CATEGORY: SETTINGS 1004 // OS: 6.0 1005 MANAGE_DOMAIN_URLS = 143; 1006 1007 // OPEN: Settings > Sound & notification > DND > [Time based rule] 1008 // CATEGORY: SETTINGS 1009 // OS: 6.0 1010 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144; 1011 1012 // OPEN: Settings > Sound & notification > DND > [External rule] 1013 // CATEGORY: SETTINGS 1014 // OS: 6.0 1015 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145; 1016 1017 // OPEN: Settings > Sound & notification > DND > [Event rule] 1018 // CATEGORY: SETTINGS 1019 // OS: 6.0 1020 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146; 1021 1022 // ACTION: App notification settings > Block Notifications or long press on 1023 // notification blocks. 1024 // CATEGORY: SETTINGS 1025 // OS: 9.0 1026 ACTION_BAN_APP_NOTES = 147; 1027 1028 // ACTION: Notification shade > Dismiss all button 1029 // CATEGORY: NOTIFICATION 1030 // OS: 6.0 1031 ACTION_DISMISS_ALL_NOTES = 148; 1032 1033 // OPEN: QS Do Not Disturb detail panel 1034 // CATEGORY: QUICK_SETTINGS 1035 // OS: 6.0 1036 QS_DND_DETAILS = 149; 1037 1038 // OPEN: QS Bluetooth detail panel 1039 // CATEGORY: QUICK_SETTINGS 1040 // OS: 6.0 1041 QS_BLUETOOTH_DETAILS = 150; 1042 1043 // OPEN: QS Cast detail panel 1044 // CATEGORY: QUICK_SETTINGS 1045 // OS: 6.0 1046 QS_CAST_DETAILS = 151; 1047 1048 // OPEN: QS Wi-Fi detail panel 1049 // CATEGORY: QUICK_SETTINGS 1050 // OS: 6.0 1051 QS_WIFI_DETAILS = 152; 1052 1053 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle 1054 // SUBTYPE: 0 is off, 1 is on 1055 // CATEGORY: QUICK_SETTINGS 1056 // OS: 6.0 1057 QS_WIFI_TOGGLE = 153; 1058 1059 // ACTION: QS Bluetooth detail panel > Bluetooth toggle 1060 // SUBTYPE: 0 is off, 1 is on 1061 // CATEGORY: QUICK_SETTINGS 1062 // OS: 6.0 1063 QS_BLUETOOTH_TOGGLE = 154; 1064 1065 // ACTION: QS Cellular detail panel > Cellular toggle 1066 // SUBTYPE: 0 is off, 1 is on 1067 // CATEGORY: QUICK_SETTINGS 1068 // OS: 6.0 1069 QS_CELLULAR_TOGGLE = 155; 1070 1071 // ACTION: QS User list panel > Select different user 1072 // CATEGORY: QUICK_SETTINGS 1073 // OS: 6.0 1074 QS_SWITCH_USER = 156; 1075 1076 // ACTION: QS Cast detail panel > Select cast device 1077 // CATEGORY: QUICK_SETTINGS 1078 // OS: 6.0 1079 QS_CAST_SELECT = 157; 1080 1081 // ACTION: QS Cast detail panel > Disconnect cast device 1082 // CATEGORY: QUICK_SETTINGS 1083 // OS: 6.0 1084 QS_CAST_DISCONNECT = 158; 1085 1086 // ACTION: Settings > Bluetooth > Toggle 1087 // SUBTYPE: 0 is off, 1 is on 1088 // CATEGORY: SETTINGS 1089 // OS: 6.0 1090 ACTION_BLUETOOTH_TOGGLE = 159; 1091 1092 // ACTION: Settings > Bluetooth > Overflow > Refresh 1093 // CATEGORY: SETTINGS 1094 // OS: 6.0 1095 ACTION_BLUETOOTH_SCAN = 160; 1096 1097 // ACTION: Settings > Bluetooth > Overflow > Rename this device 1098 // CATEGORY: SETTINGS 1099 // OS: 6.0 1100 ACTION_BLUETOOTH_RENAME = 161; 1101 1102 // ACTION: Settings > Bluetooth > Overflow > Show received files 1103 // CATEGORY: SETTINGS 1104 // OS: 6.0 1105 ACTION_BLUETOOTH_FILES = 162; 1106 1107 // ACTION: QS DND details panel > Increase / Decrease exit time 1108 // SUBTYPE: true is increase, false is decrease 1109 // CATEGORY: QUICK_SETTINGS 1110 // OS: 6.0 1111 QS_DND_TIME = 163; 1112 1113 // ACTION: QS DND details panel > [Exit condition] 1114 // CATEGORY: QUICK_SETTINGS 1115 // OS: 6.0 1116 QS_DND_CONDITION_SELECT = 164; 1117 1118 // ACTION: QS DND details panel > [DND mode] 1119 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only 1120 // CATEGORY: QUICK_SETTINGS 1121 // OS: 6.0 1122 QS_DND_ZEN_SELECT = 165; 1123 1124 // ACTION: QS DND detail panel > DND toggle 1125 // SUBTYPE: 0 is off, 1 is on 1126 // CATEGORY: QUICK_SETTINGS 1127 // OS: 6.0 1128 QS_DND_TOGGLE = 166; 1129 1130 // ACTION: DND Settings > Priority only allows > Reminder toggle 1131 // SUBTYPE: 0 is off, 1 is on 1132 // CATEGORY: SETTINGS 1133 // OS: 6.0 1134 ACTION_ZEN_ALLOW_REMINDERS = 167; 1135 1136 // ACTION: DND Settings > Priority only allows > Event toggle 1137 // SUBTYPE: 0 is off, 1 is on 1138 // CATEGORY: SETTINGS 1139 // OS: 6.0 1140 ACTION_ZEN_ALLOW_EVENTS = 168; 1141 1142 // ACTION: DND Settings > Priority only allows > Messages 1143 // SUBTYPE: 0 is off, 1 is on 1144 // CATEGORY: SETTINGS 1145 // OS: 6.0 1146 ACTION_ZEN_ALLOW_MESSAGES = 169; 1147 1148 // ACTION: DND Settings > Priority only allows > Calls 1149 // SUBTYPE: 0 is off, 1 is on 1150 // CATEGORY: SETTINGS 1151 // OS: 6.0 1152 ACTION_ZEN_ALLOW_CALLS = 170; 1153 1154 // ACTION: DND Settings > Priority only allows > Repeat callers toggle 1155 // SUBTYPE: 0 is off, 1 is on 1156 // CATEGORY: SETTINGS 1157 // OS: 6.0 1158 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171; 1159 1160 // ACTION: DND Settings > Automatic rules > Add rule 1161 // CATEGORY: SETTINGS 1162 // OS: 6.0 1163 ACTION_ZEN_ADD_RULE = 172; 1164 1165 // ACTION: DND Settings > Automatic rules > Add rule > OK 1166 // CATEGORY: SETTINGS 1167 // OS: 6.0 1168 ACTION_ZEN_ADD_RULE_OK = 173; 1169 1170 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule 1171 // CATEGORY: SETTINGS 1172 // OS: 6.0 1173 ACTION_ZEN_DELETE_RULE = 174; 1174 1175 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete 1176 // CATEGORY: SETTINGS 1177 // OS: 6.0 1178 ACTION_ZEN_DELETE_RULE_OK = 175; 1179 1180 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle 1181 // SUBTYPE: 0 is off, 1 is on 1182 // CATEGORY: SETTINGS 1183 // OS: 6.0 1184 ACTION_ZEN_ENABLE_RULE = 176; 1185 1186 // ACTION: Settings > More > Airplane mode toggle 1187 // SUBTYPE: 0 is off, 1 is on 1188 // CATEGORY: SETTINGS 1189 // OS: 6.0 1190 ACTION_AIRPLANE_TOGGLE = 177; 1191 1192 // ACTION: Settings > Data usage > Cellular data toggle 1193 // SUBTYPE: 0 is off, 1 is on 1194 // CATEGORY: SETTINGS 1195 // OS: 6.0 1196 ACTION_CELL_DATA_TOGGLE = 178; 1197 1198 // OPEN: Settings > Sound & notification > Notification access 1199 // CATEGORY: SETTINGS 1200 // OS: 6.0 1201 NOTIFICATION_ACCESS = 179; 1202 1203 // OPEN: Settings > Sound & notification > Do Not Disturb access 1204 // CATEGORY: SETTINGS 1205 // OS: 6.0 1206 NOTIFICATION_ZEN_MODE_ACCESS = 180; 1207 1208 // OPEN: Settings > Apps > Configure apps > Default Apps 1209 // CATEGORY: SETTINGS 1210 // OS: 6.0 1211 APPLICATIONS_DEFAULT_APPS = 181; 1212 1213 // OPEN: Settings > Internal storage > Apps storage 1214 // CATEGORY: SETTINGS 1215 // OS: 6.0 1216 APPLICATIONS_STORAGE_APPS = 182; 1217 1218 // OPEN: Settings > Security > Usage access 1219 // CATEGORY: SETTINGS 1220 // OS: 6.0 1221 APPLICATIONS_USAGE_ACCESS_DETAIL = 183; 1222 1223 // OPEN: Settings > Battery > Battery optimization 1224 // CATEGORY: SETTINGS 1225 // OS: 6.0 1226 APPLICATIONS_HIGH_POWER_APPS = 184; 1227 1228 // OBSOLETE 1229 FUELGAUGE_HIGH_POWER_DETAILS = 185; 1230 1231 // ACTION: Lockscreen > Unlock gesture 1232 // CATEGORY: GLOBAL_SYSTEM_UI 1233 // OS: 5.1.1 1234 ACTION_LS_UNLOCK = 186; 1235 1236 // ACTION: Lockscreen > Pull shade open 1237 // CATEGORY: GLOBAL_SYSTEM_UI 1238 // OS: 5.1.1 1239 ACTION_LS_SHADE = 187; 1240 1241 // ACTION: Lockscreen > Tap on lock, shows hint 1242 // CATEGORY: GLOBAL_SYSTEM_UI 1243 // OS: 5.1.1 1244 ACTION_LS_HINT = 188; 1245 1246 // ACTION: Lockscreen > Camera 1247 // CATEGORY: GLOBAL_SYSTEM_UI 1248 // OS: 5.1.1 1249 ACTION_LS_CAMERA = 189; 1250 1251 // ACTION: Lockscreen > Dialer 1252 // CATEGORY: GLOBAL_SYSTEM_UI 1253 // OS: 5.1.1 1254 ACTION_LS_DIALER = 190; 1255 1256 // ACTION: Lockscreen > Tap on lock, locks phone 1257 // CATEGORY: GLOBAL_SYSTEM_UI 1258 // OS: 5.1.1 1259 ACTION_LS_LOCK = 191; 1260 1261 // ACTION: Lockscreen > Tap on notification, false touch rejection 1262 // CATEGORY: GLOBAL_SYSTEM_UI 1263 // OS: 5.1.1 1264 ACTION_LS_NOTE = 192; 1265 1266 // ACTION: Lockscreen > Swipe down to open quick settings 1267 // CATEGORY: GLOBAL_SYSTEM_UI 1268 // OS: 6.0 1269 ACTION_LS_QS = 193; 1270 1271 // ACTION: Swipe down to open quick settings when unlocked 1272 // CATEGORY: GLOBAL_SYSTEM_UI 1273 // OS: 6.0 1274 ACTION_SHADE_QS_PULL = 194; 1275 1276 // ACTION: Notification shade > Tap to open quick settings 1277 // CATEGORY: GLOBAL_SYSTEM_UI 1278 // OS: 6.0 1279 ACTION_SHADE_QS_TAP = 195; 1280 1281 // OPEN: Lockscreen 1282 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN 1283 // CATEGORY: GLOBAL_SYSTEM_UI 1284 // OS: 5.1.1 1285 LOCKSCREEN = 196; 1286 1287 // OPEN: Lockscreen > Screen to enter password / pattern / PIN 1288 // CATEGORY: GLOBAL_SYSTEM_UI 1289 // OS: 5.1.1 1290 BOUNCER = 197; 1291 1292 // OPEN: Screen turned on 1293 // SUBTYPE: 2 is user action 1294 // CATEGORY: GLOBAL_SYSTEM_UI 1295 // OS: 5.1.1 1296 SCREEN = 198; 1297 1298 // OPEN: Notification caused sound, vibration, and/or LED blink 1299 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together 1300 // CATEGORY: NOTIFICATION 1301 // OS: 5.1.1 1302 NOTIFICATION_ALERT = 199; 1303 1304 // ACTION: Lockscreen > Emergency Call button 1305 // CATEGORY: GLOBAL_SYSTEM_UI 1306 // OS: 5.1.1 1307 ACTION_EMERGENCY_CALL = 200; 1308 1309 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input 1310 // CATEGORY: SETTINGS 1311 // OS: 6.0 1312 APPLICATIONS_MANAGE_ASSIST = 201; 1313 1314 // OPEN: Settings > Memory 1315 // CATEGORY: SETTINGS 1316 // OS: 6.0 1317 PROCESS_STATS_SUMMARY = 202; 1318 1319 // ACTION: Settings > Display > When device is rotated 1320 // CATEGORY: SETTINGS 1321 // OS: 6.0 1322 ACTION_ROTATION_LOCK = 203; 1323 1324 // ACTION: Long press on notification to view controls 1325 // CATEGORY: NOTIFICATION 1326 // OS: 6.0 1327 ACTION_NOTE_CONTROLS = 204; 1328 1329 // ACTION: Notificatoin controls > Info button 1330 // CATEGORY: NOTIFICATION 1331 // OS: 6.0 1332 ACTION_NOTE_INFO = 205; 1333 1334 // ACTION: Notification controls > Settings button 1335 // CATEGORY: NOTIFICATION 1336 // OS: 6.0 1337 ACTION_APP_NOTE_SETTINGS = 206; 1338 1339 // OPEN: Volume Dialog (with hardware buttons) 1340 // CATEGORY: GLOBAL_SYSTEM_UI 1341 // OS: 6.0 1342 VOLUME_DIALOG = 207; 1343 1344 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders) 1345 // CATEGORY: GLOBAL_SYSTEM_UI 1346 // OS: 6.0 1347 VOLUME_DIALOG_DETAILS = 208; 1348 1349 // ACTION: Volume dialog > Adjust volume slider 1350 // SUBTYPE: volume level (0-7) 1351 // CATEGORY: GLOBAL_SYSTEM_UI 1352 // OS: 6.0 1353 ACTION_VOLUME_SLIDER = 209; 1354 1355 // ACTION: Volume dialog > Select non-active stream 1356 // SUBTYPE: stream (defined in AudioSystem.java) 1357 // CATEGORY: GLOBAL_SYSTEM_UI 1358 // OS: 6.0 1359 ACTION_VOLUME_STREAM = 210; 1360 1361 // ACTION: Adjust volume with hardware key 1362 // SUBTYPE: volume level (0-7) 1363 // CATEGORY: GLOBAL_SYSTEM_UI 1364 // OS: 6.0 1365 ACTION_VOLUME_KEY = 211; 1366 1367 // ACTION: Volume dialog > Mute a stream by tapping icon 1368 // SUBTYPE: mute is 1, audible is 2 1369 // CATEGORY: GLOBAL_SYSTEM_UI 1370 // OS: 6.0 1371 ACTION_VOLUME_ICON = 212; 1372 1373 // ACTION: Volume dialog > Change ringer mode by tapping icon 1374 // SUBTYPE: 2 is audible, 3 is vibrate 1375 // CATEGORY: GLOBAL_SYSTEM_UI 1376 // OS: 6.0 1377 ACTION_RINGER_MODE = 213; 1378 1379 // ACTION: Chooser shown (share target, file open, etc.) 1380 // CATEGORY: GLOBAL_SYSTEM_UI 1381 // OS: 6.0 1382 ACTION_ACTIVITY_CHOOSER_SHOWN = 214; 1383 1384 // ACTION: Chooser > User taps an app target 1385 // SUBTYPE: Index of target 1386 // CATEGORY: GLOBAL_SYSTEM_UI 1387 // OS: 6.0 1388 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215; 1389 1390 // ACTION: Chooser > User taps a service target 1391 // SUBTYPE: Index of target 1392 // CATEGORY: GLOBAL_SYSTEM_UI 1393 // OS: 6.0 1394 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216; 1395 1396 // ACTION: Chooser > User taps a standard target 1397 // SUBTYPE: Index of target 1398 // CATEGORY: GLOBAL_SYSTEM_UI 1399 // OS: 6.0 1400 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217; 1401 1402 // ACTION: QS Brightness Slider (with auto brightness disabled) 1403 // SUBTYPE: slider value 1404 // CATEGORY: QUICK_SETTINGS 1405 // OS: 6.0 1406 ACTION_BRIGHTNESS = 218; 1407 1408 // ACTION: QS Brightness Slider (with auto brightness enabled) 1409 // SUBTYPE: slider value 1410 // CATEGORY: QUICK_SETTINGS 1411 // OS: 6.0 1412 ACTION_BRIGHTNESS_AUTO = 219; 1413 1414 // OPEN: Settings > Display > Brightness Slider 1415 // CATEGORY: SETTINGS 1416 // OS: 6.0 1417 BRIGHTNESS_DIALOG = 220; 1418 1419 // OPEN: Settings > Apps > Configure Apps > Display over other apps 1420 // CATEGORY: SETTINGS 1421 // OS: 6.0 1422 SYSTEM_ALERT_WINDOW_APPS = 221; 1423 1424 // OPEN: Display has entered dream mode 1425 // CATEGORY: GLOBAL_SYSTEM_UI 1426 // OS: 6.0 1427 DREAMING = 222; 1428 1429 // OPEN: Display has entered ambient notification mode 1430 // CATEGORY: GLOBAL_SYSTEM_UI 1431 // OS: 6.0 1432 DOZING = 223; 1433 1434 // OPEN: Overview 1435 // CATEGORY: GLOBAL_SYSTEM_UI 1436 // OS: 6.0 1437 OVERVIEW_ACTIVITY = 224; 1438 1439 // OPEN: Settings > About phone > Legal information 1440 // CATEGORY: SETTINGS 1441 // OS: 6.0 1442 ABOUT_LEGAL_SETTINGS = 225; 1443 1444 // OPEN: Settings > Search > Perform search 1445 // CATEGORY: SETTINGS 1446 // OS: 6.0 1447 ACTION_SEARCH_RESULTS = 226; 1448 1449 // OPEN: Settings > System UI Tuner 1450 // CATEGORY: SETTINGS 1451 // OS: 6.0 1452 TUNER = 227; 1453 1454 // OPEN: Settings > System UI Tuner > Quick Settings 1455 // CATEGORY: SETTINGS 1456 // OS: 6.0 1457 TUNER_QS = 228; 1458 1459 // OPEN: Settings > System UI Tuner > Demo mode 1460 // CATEGORY: SETTINGS 1461 // OS: 6.0 1462 TUNER_DEMO_MODE = 229; 1463 1464 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile 1465 // PACKAGE: Tile 1466 // CATEGORY: SETTINGS 1467 // OS: 6.0 1468 TUNER_QS_REORDER = 230; 1469 1470 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile 1471 // PACKAGE: Tile 1472 // CATEGORY: SETTINGS 1473 // OS: 6.0 1474 TUNER_QS_ADD = 231; 1475 1476 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile 1477 // PACKAGE: Tile 1478 // CATEGORY: SETTINGS 1479 // OS: 6.0 1480 TUNER_QS_REMOVE = 232; 1481 1482 // ACTION: Settings > System UI Tuner > Status bar > Enable icon 1483 // PACKAGE: Icon 1484 // CATEGORY: SETTINGS 1485 // OS: 6.0 1486 TUNER_STATUS_BAR_ENABLE = 233; 1487 1488 // ACTION: Settings > System UI Tuner > Status bar > Disable icon 1489 // PACKAGE: Icon 1490 // CATEGORY: SETTINGS 1491 // OS: 6.0 1492 TUNER_STATUS_BAR_DISABLE = 234; 1493 1494 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode 1495 // SUBTYPE: false is disabled, true is enabled 1496 // CATEGORY: SETTINGS 1497 // OS: 6.0 1498 TUNER_DEMO_MODE_ENABLED = 235; 1499 1500 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode 1501 // SUBTYPE: false is disabled, true is enabled 1502 // CATEGORY: SETTINGS 1503 // OS: 6.0 1504 TUNER_DEMO_MODE_ON = 236; 1505 1506 // ACTION: Settings > System UI Tuner > Show embedded battery percentage 1507 // SUBTYPE: 0 is disabled, 1 is enabled 1508 // CATEGORY: SETTINGS 1509 // OS: 6.0 1510 TUNER_BATTERY_PERCENTAGE = 237; 1511 1512 // OPEN: Settings > Developer options > Inactive apps 1513 // CATEGORY: SETTINGS 1514 // OS: 6.0 1515 FUELGAUGE_INACTIVE_APPS = 238; 1516 1517 // ACTION: Long press home to bring up assistant 1518 // CATEGORY: GLOBAL_SYSTEM_UI 1519 // OS: 6.0 1520 ACTION_ASSIST_LONG_PRESS = 239; 1521 1522 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint 1523 // CATEGORY: SETTINGS 1524 // OS: 6.0 1525 FINGERPRINT_ENROLLING = 240; 1526 1527 // OPEN: Fingerprint Enroll > Find Sensor 1528 // CATEGORY: SETTINGS 1529 // OS: 6.0 1530 FINGERPRINT_FIND_SENSOR = 241; 1531 1532 // OPEN: Fingerprint Enroll > Fingerprint Enrolled! 1533 // CATEGORY: SETTINGS 1534 // OS: 6.0 1535 FINGERPRINT_ENROLL_FINISH = 242; 1536 1537 // OPEN: Fingerprint Enroll introduction 1538 // CATEGORY: SETTINGS 1539 // OS: 6.0 1540 FINGERPRINT_ENROLL_INTRO = 243; 1541 1542 // OPEN: Fingerprint Enroll onboarding 1543 // CATEGORY: SETTINGS 1544 // OS: 6.0 1545 FINGERPRINT_ENROLL_ONBOARD = 244; 1546 1547 // OPEN: Fingerprint Enroll > Let's Start! 1548 // CATEGORY: SETTINGS 1549 // OS: 6.0 1550 FINGERPRINT_ENROLL_SIDECAR = 245; 1551 1552 // OPEN: Fingerprint Enroll SUW > Let's Start! 1553 // CATEGORY: SETTINGS 1554 // OS: 6.0 1555 FINGERPRINT_ENROLLING_SETUP = 246; 1556 1557 // OPEN: Fingerprint Enroll SUW > Find Sensor 1558 // CATEGORY: SETTINGS 1559 // OS: 6.0 1560 FINGERPRINT_FIND_SENSOR_SETUP = 247; 1561 1562 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled! 1563 // CATEGORY: SETTINGS 1564 // OS: 6.0 1565 FINGERPRINT_ENROLL_FINISH_SETUP = 248; 1566 1567 // OPEN: Fingerprint Enroll SUW introduction 1568 // CATEGORY: SETTINGS 1569 // OS: 6.0 1570 FINGERPRINT_ENROLL_INTRO_SETUP = 249; 1571 1572 // OPEN: Fingerprint Enroll SUW onboarding 1573 // CATEGORY: SETTINGS 1574 // OS: 6.0 1575 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250; 1576 1577 // ACTION: Add fingerprint > Enroll fingerprint 1578 // CATEGORY: SETTINGS 1579 // OS: 6.0 1580 ACTION_FINGERPRINT_ENROLL = 251; 1581 1582 // ACTION: Authenticate using fingerprint 1583 // CATEGORY: SETTINGS 1584 // OS: 6.0 1585 ACTION_FINGERPRINT_AUTH = 252; 1586 1587 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete 1588 // CATEGORY: SETTINGS 1589 // OS: 6.0 1590 ACTION_FINGERPRINT_DELETE = 253; 1591 1592 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename 1593 // CATEGORY: SETTINGS 1594 // OS: 6.0 1595 ACTION_FINGERPRINT_RENAME = 254; 1596 1597 // ACTION: Double tap camera shortcut 1598 // CATEGORY: GLOBAL_SYSTEM_UI 1599 // OS: 6.0 1600 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255; 1601 1602 // ACTION: Double twist camera shortcut 1603 // CATEGORY: GLOBAL_SYSTEM_UI 1604 // OS: 6.0 1605 ACTION_WIGGLE_CAMERA_GESTURE = 256; 1606 1607 // OPEN: QS Work Mode tile shown 1608 // ACTION: QS Work Mode tile tapped 1609 // SUBTYPE: 0 is off, 1 is on 1610 // CATEGORY: QUICK_SETTINGS 1611 // OS: N 1612 QS_WORKMODE = 257; 1613 1614 // OPEN: Settings > Developer Options > Background Check 1615 // CATEGORY: SETTINGS 1616 // OS: N 1617 BACKGROUND_CHECK_SUMMARY = 258; 1618 1619 // OPEN: QS Lock tile shown 1620 // ACTION: QS Lock tile tapped 1621 // SUBTYPE: 0 is off, 1 is on 1622 // CATEGORY: QUICK_SETTINGS 1623 // OS: N 1624 QS_LOCK_TILE = 259; 1625 1626 // OPEN: QS User Tile shown 1627 // CATEGORY: QUICK_SETTINGS 1628 // OS: N 1629 QS_USER_TILE = 260; 1630 1631 // OPEN: QS Battery tile shown 1632 // CATEGORY: QUICK_SETTINGS 1633 // OS: N 1634 QS_BATTERY_TILE = 261; 1635 1636 // OPEN: Settings > Sound > Do not disturb > Visual interruptions 1637 // CATEGORY: SETTINGS 1638 // OS: N 1639 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262; 1640 1641 // ACTION: Visual interruptions > No screen interuptions toggle 1642 // SUBTYPE: 0 is off, 1 is on 1643 // CATEGORY: SETTINGS 1644 // OS: N 1645 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263; 1646 1647 // ACTION: Visual interruptions > No notification light toggle 1648 // SUBTYPE: 0 is off, 1 is on 1649 // CATEGORY: SETTINGS 1650 // OS: N 1651 ACTION_ZEN_ALLOW_LIGHTS = 264; 1652 1653 // OPEN: Settings > Notifications > [App] > Channel Notifications 1654 // CATEGORY: SETTINGS 1655 // OS: N 1656 NOTIFICATION_TOPIC_NOTIFICATION = 265; 1657 1658 // ACTION: Settings > Apps > Default Apps > Select different SMS app 1659 // PACKAGE: Selected SMS app 1660 // CATEGORY: SETTINGS 1661 // OS: N 1662 ACTION_DEFAULT_SMS_APP_CHANGED = 266; 1663 1664 // OPEN: QS Color modification tile shown 1665 // ACTION: QS Color modification tile tapped 1666 // SUBTYPE: 0 is off, 1 is on 1667 // CATEGORY: QUICK_SETTINGS 1668 // OS: N 1669 QS_COLOR_MATRIX = 267; 1670 1671 // OPEN: QS Custom tile shown 1672 // ACTION: QS Work Mode tile tapped 1673 // CATEGORY: QUICK_SETTINGS 1674 // OS: N 1675 QS_CUSTOM = 268; 1676 1677 // ACTION: Visual interruptions > Never turn off the screen toggle 1678 // SUBTYPE: 0 is off, 1 is on 1679 // CATEGORY: SETTINGS 1680 // OS: N 1681 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269; 1682 1683 // ACTION: Overview > Long-press task, drag to enter split-screen 1684 // CATEGORY: GLOBAL_SYSTEM_UI 1685 // OS: N 1686 ACTION_WINDOW_DOCK_DRAG_DROP = 270; 1687 1688 // ACTION: In App > Long-press Overview button to enter split-screen 1689 // CATEGORY: GLOBAL_SYSTEM_UI 1690 // OS: N 1691 ACTION_WINDOW_DOCK_LONGPRESS = 271; 1692 1693 // ACTION: In App > Swipe Overview button to enter split-screen 1694 // CATEGORY: GLOBAL_SYSTEM_UI 1695 // OS: N 1696 ACTION_WINDOW_DOCK_SWIPE = 272; 1697 1698 // ACTION: Launch profile-specific app > Confirm credentials 1699 // CATEGORY: GLOBAL_SYSTEM_UI 1700 // OS: N 1701 PROFILE_CHALLENGE = 273; 1702 1703 // OPEN: QS Battery detail panel 1704 // CATEGORY: GLOBAL_SYSTEM_UI 1705 // OS: N 1706 QS_BATTERY_DETAIL = 274; 1707 1708 // OPEN: Overview > History 1709 // CATEGORY: GLOBAL_SYSTEM_UI 1710 // OS: N 1711 OVERVIEW_HISTORY = 275; 1712 1713 // ACTION: Overview > Page by tapping Overview button 1714 // CATEGORY: GLOBAL_SYSTEM_UI 1715 // OS: N 1716 ACTION_OVERVIEW_PAGE = 276; 1717 1718 // ACTION: Overview > Select app 1719 // CATEGORY: GLOBAL_SYSTEM_UI 1720 // OS: N 1721 ACTION_OVERVIEW_SELECT = 277; 1722 1723 // ACTION: View emergency info 1724 // CATEGORY: GLOBAL_SYSTEM_UI 1725 // OS: N 1726 ACTION_VIEW_EMERGENCY_INFO = 278; 1727 1728 // ACTION: Edit emergency info activity 1729 // CATEGORY: SETTINGS 1730 // OS: N 1731 ACTION_EDIT_EMERGENCY_INFO = 279; 1732 1733 // ACTION: Edit emergency info field 1734 // CATEGORY: SETTINGS 1735 // OS: N 1736 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280; 1737 1738 // ACTION: Add emergency contact 1739 // CATEGORY: SETTINGS 1740 // OS: N 1741 ACTION_ADD_EMERGENCY_CONTACT = 281; 1742 1743 // ACTION: Delete emergency contact 1744 // CATEGORY: SETTINGS 1745 // OS: N 1746 ACTION_DELETE_EMERGENCY_CONTACT = 282; 1747 1748 // ACTION: Call emergency contact 1749 // CATEGORY: SETTINGS 1750 // OS: N 1751 ACTION_CALL_EMERGENCY_CONTACT = 283; 1752 1753 // OPEN: QS Data Saver tile shown 1754 // ACTION: QS Data Saver tile tapped 1755 // CATEGORY: QUICK_SETTINGS 1756 QS_DATA_SAVER = 284; 1757 1758 // OPEN: Settings > Security > User credentials 1759 // CATEGORY: Settings 1760 // OS: N 1761 USER_CREDENTIALS = 285; 1762 1763 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen 1764 // CATEGORY: GLOBAL_SYSTEM_UI 1765 // OS: N 1766 ACTION_WINDOW_UNDOCK_LONGPRESS = 286; 1767 1768 // Logged when the user scrolls through overview manually 1769 OVERVIEW_SCROLL = 287; 1770 1771 // Logged when the overview times out automatically selecting an app 1772 OVERVIEW_SELECT_TIMEOUT = 288; 1773 1774 // Logged when a user dismisses a task in overview 1775 OVERVIEW_DISMISS = 289; 1776 1777 // Logged when the user modifying the notification importance slider. 1778 ACTION_MODIFY_IMPORTANCE_SLIDER = 290; 1779 1780 // Logged when the user saves a modification to notification importance. Negative numbers 1781 // indicate the user lowered the importance; positive means they increased it. 1782 ACTION_SAVE_IMPORTANCE = 291; 1783 1784 // ACTION: Long-press power button, then tap "Take bug report" option. 1785 // CATEGORY: GLOBAL_SYSTEM_UI 1786 // OS: N 1787 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292; 1788 1789 // ACTION: Long-press power button, then long-press "Take bug report" option. 1790 // CATEGORY: GLOBAL_SYSTEM_UI 1791 // OS: N 1792 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293; 1793 1794 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report 1795 // CATEGORY: SETTINGS 1796 // OS: N 1797 // Interactive bug report initiated from Settings. 1798 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294; 1799 1800 // ACTION: Settings -> Developer Options -> Take bug report -> Full report 1801 // CATEGORY: SETTINGS 1802 // OS: N 1803 // Interactive bug report initiated from Settings. 1804 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295; 1805 1806 // ACTION: User tapped notification action to cancel a bug report 1807 // CATEGORY: NOTIFICATION 1808 // OS: N 1809 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296; 1810 1811 // ACTION: User tapped notification action to launch bug report details screen 1812 // CATEGORY: NOTIFICATION 1813 // OS: N 1814 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297; 1815 1816 // ACTION: User tapped notification action to take adition screenshot on bug report 1817 // CATEGORY: NOTIFICATION 1818 // OS: N 1819 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298; 1820 1821 // ACTION: User tapped notification to share bug report 1822 // CATEGORY: NOTIFICATION 1823 // OS: N 1824 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299; 1825 1826 // ACTION: User changed bug report name using the details screen 1827 // CATEGORY: GLOBAL_SYSTEM_UI 1828 // OS: N 1829 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300; 1830 1831 // ACTION: User changed bug report title using the details screen 1832 // CATEGORY: GLOBAL_SYSTEM_UI 1833 // OS: N 1834 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301; 1835 1836 // ACTION: User changed bug report description using the details screen 1837 // CATEGORY: GLOBAL_SYSTEM_UI 1838 // OS: N 1839 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302; 1840 1841 // ACTION: User tapped Save in the bug report details screen. 1842 // CATEGORY: GLOBAL_SYSTEM_UI 1843 // OS: N 1844 ACTION_BUGREPORT_DETAILS_SAVED = 303; 1845 1846 // ACTION: User tapped Cancel in the bug report details screen. 1847 // CATEGORY: GLOBAL_SYSTEM_UI 1848 // OS: N 1849 ACTION_BUGREPORT_DETAILS_CANCELED = 304; 1850 1851 // Tuner: Open/close calibrate dialog. 1852 TUNER_CALIBRATE_DISPLAY = 305; 1853 1854 // Tuner: Open/close color and appearance. 1855 TUNER_COLOR_AND_APPEARANCE = 306; 1856 1857 // Tuner: Apply calibrate dialog. 1858 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307; 1859 1860 // Tuner: Open/close night mode. 1861 TUNER_NIGHT_MODE = 308; 1862 1863 // Tuner: Change night mode. 1864 ACTION_TUNER_NIGHT_MODE = 309; 1865 1866 // Tuner: Change night mode auto. 1867 ACTION_TUNER_NIGHT_MODE_AUTO = 310; 1868 1869 // Tuner: Change night mode adjust dark theme. 1870 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311; 1871 1872 // Tuner: Change night mode adjust tint. 1873 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312; 1874 1875 // Tuner: Change night mode adjust brightness. 1876 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313; 1877 1878 // Tuner: Change do not disturb in volume panel. 1879 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314; 1880 1881 // Tuner: Change do not disturb volume buttons shortcut. 1882 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315; 1883 1884 // Logs the action the user takes when an app crashed. 1885 ACTION_APP_CRASH = 316; 1886 1887 // Logs the action the user takes when an app ANR'd. 1888 ACTION_APP_ANR = 317; 1889 1890 // Logged when a user double taps the overview button to launch the previous task 1891 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318; 1892 1893 // Logged when we execute an app transition. This indicates the total delay from startActivity 1894 // until the app transition is starting to animate, in milliseconds. 1895 APP_TRANSITION_DELAY_MS = 319; 1896 1897 // Logged when we execute an app transition. This indicates the reason why the transition 1898 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons. 1899 APP_TRANSITION_REASON = 320; 1900 1901 // Logged when we execute an app transition and we drew a starting window. This indicates the 1902 // delay from startActivity until the starting window was drawn. 1903 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321; 1904 1905 // Logged when we execute an app transition and all windows of the app got drawn. This indicates 1906 // the delay from startActivity until all windows have been drawn. 1907 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322; 1908 1909 // Logged when we execute an app transition. This indicates the component name of the current 1910 // transition. 1911 APP_TRANSITION_COMPONENT_NAME = 323; 1912 1913 // Logged when we execute an app transition. This indicates whether the process was already 1914 // running. 1915 APP_TRANSITION_PROCESS_RUNNING = 324; 1916 1917 // Logged when we execute an app transition. This indicates the device uptime in seconds when 1918 // the transition was executed. 1919 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325; 1920 1921 // ACTION: app requested access to a scoped directory, user granted it. 1922 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES 1923 // CATEGORY: GLOBAL_SYSTEM_UI 1924 // OS: N 1925 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326; 1926 1927 // ACTION: app requested access to a scoped directory, user denied it. 1928 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES 1929 // CATEGORY: GLOBAL_SYSTEM_UI 1930 // OS: N 1931 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327; 1932 1933 // ACTION: app requested access to a scoped directory, user granted it. 1934 // PACKAGE: app that requested access 1935 // CATEGORY: GLOBAL_SYSTEM_UI 1936 // OS: N 1937 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328; 1938 1939 // ACTION: app requested access to a scoped directory, user denied it. 1940 // PACKAGE: app that requested access. 1941 // CATEGORY: GLOBAL_SYSTEM_UI 1942 // OS: N 1943 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329; 1944 1945 // ACTION: app requested access to a directory user has already been granted 1946 // access before. 1947 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES. 1948 // CATEGORY: GLOBAL_SYSTEM_UI 1949 // OS: N 1950 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330; 1951 1952 // ACTION: app requested access to a directory user has already been granted 1953 // access before. 1954 // PACKAGE: app that requested access. 1955 // CATEGORY: GLOBAL_SYSTEM_UI 1956 // OS: N 1957 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331; 1958 1959 // ACTION: Logged when the user slides a notification and reveals the gear 1960 // beneath it. 1961 // CATEGORY: NOTIFICATION 1962 // OS: N 1963 ACTION_REVEAL_GEAR = 332; 1964 1965 // ACTION: Logged when the user taps on the gear beneath a notification. 1966 // CATEGORY: NOTIFICATION 1967 // OS: N 1968 ACTION_TOUCH_GEAR = 333; 1969 1970 // Logs that the user has edited the enabled VR listeners. 1971 // CATEGORY: SETTINGS 1972 // OS: N 1973 VR_MANAGE_LISTENERS = 334; 1974 1975 // Settings -> Accessibility -> Click after pointer stops moving 1976 // CATEGORY: SETTINGS 1977 // OS: N 1978 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335; 1979 1980 // Settings -> Sound 1981 // CATEGORY: SETTINGS 1982 // OS: N 1983 SOUND = 336; 1984 1985 // Settings -> Notifications -> Gear 1986 // CATEGORY: SETTINGS 1987 // OS: N 1988 CONFIGURE_NOTIFICATION = 337; 1989 1990 // Settings -> Wi-Fi -> Gear 1991 // CATEGORY: SETTINGS 1992 // OS: N 1993 CONFIGURE_WIFI = 338; 1994 1995 // Settings -> Display -> Display size 1996 // OS: N 1997 DISPLAY_SCREEN_ZOOM = 339; 1998 1999 // Settings -> Display -> Font size 2000 // CATEGORY: SETTINGS 2001 // OS: N 2002 ACCESSIBILITY_FONT_SIZE = 340; 2003 2004 // Settings -> Data usage -> Cellular/Wi-Fi data usage 2005 // CATEGORY: SETTINGS 2006 // OS: N 2007 DATA_USAGE_LIST = 341; 2008 2009 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear 2010 // CATEGORY: SETTINGS 2011 // OS: N 2012 BILLING_CYCLE = 342; 2013 2014 // DATA_USAGE_LIST -> Any item or App info -> Data usage 2015 // CATEGORY: SETTINGS 2016 // OS: N 2017 APP_DATA_USAGE = 343; 2018 2019 // Settings -> Language & input -> Language 2020 // CATEGORY: SETTINGS 2021 // OS: N 2022 USER_LOCALE_LIST = 344; 2023 2024 // Settings -> Language & input -> Virtual keyboard 2025 // CATEGORY: SETTINGS 2026 // OS: N 2027 VIRTUAL_KEYBOARDS = 345; 2028 2029 // Settings -> Language & input -> Physical keyboard 2030 // CATEGORY: SETTINGS 2031 // OS: N 2032 PHYSICAL_KEYBOARDS = 346; 2033 2034 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard 2035 // CATEGORY: SETTINGS 2036 // OS: N 2037 ENABLE_VIRTUAL_KEYBOARDS = 347; 2038 2039 // Settings -> Data usage -> Data Saver 2040 // CATEGORY: SETTINGS 2041 // OS: N 2042 DATA_SAVER_SUMMARY = 348; 2043 2044 // Settings -> Data usage -> Data Saver -> Unrestricted data access 2045 // CATEGORY: SETTINGS 2046 // OS: N 2047 DATA_USAGE_UNRESTRICTED_ACCESS = 349; 2048 2049 // Used for generic logging of Settings Preference Persistence, should not be used 2050 // outside SharedPreferencesLogger. 2051 // CATEGORY: SETTINGS 2052 // OS: N 2053 ACTION_GENERIC_PACKAGE = 350; 2054 2055 // Settings -> Apps -> Gear -> Special access 2056 SPECIAL_ACCESS = 351; 2057 2058 // Logs that the user docks window via shortcut key. 2059 WINDOW_DOCK_SHORTCUTS = 352; 2060 2061 // User already denied access to the request folder; action takes an integer 2062 // representing the folder's index on Environment.STANDARD_DIRECTORIES 2063 // (or -2 for root access, or -1 or unknown directory). 2064 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353; 2065 2066 // User already denied access to the request folder; action pass package name 2067 // of calling package. 2068 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354; 2069 2070 // User denied access to the request folder and checked 'Do not ask again'; 2071 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES 2072 // (or -2 for root access, or -1 or unknown directory). 2073 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355; 2074 2075 // User denied access to the request folder and checked 'Do not ask again'; 2076 // action pass package name of calling package. 2077 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356; 2078 2079 // Logged when a user dismisses all task in overview 2080 OVERVIEW_DISMISS_ALL = 357; 2081 2082 // Quick Settings -> Edit 2083 QS_EDIT = 358; 2084 2085 // Quick Settings -> Edit -> Overflow -> Reset 2086 ACTION_QS_EDIT_RESET = 359; 2087 2088 // QS -> Edit - Drag a tile out of the active tiles. 2089 // The _SPEC contains either the spec of the tile or 2090 // the package of the 3rd party app in the PKG field. 2091 ACTION_QS_EDIT_REMOVE_SPEC = 360; 2092 ACTION_QS_EDIT_REMOVE = 361; 2093 2094 // QS -> Edit - Drag a tile into the active tiles. 2095 // The _SPEC contains either the spec of the tile or 2096 // the package of the 3rd party app in the PKG field. 2097 ACTION_QS_EDIT_ADD_SPEC = 362; 2098 ACTION_QS_EDIT_ADD = 363; 2099 2100 // QS -> Edit - Drag a tile within the active tiles. 2101 // The _SPEC contains either the spec of the tile or 2102 // the package of the 3rd party app in the PKG field. 2103 ACTION_QS_EDIT_MOVE_SPEC = 364; 2104 ACTION_QS_EDIT_MOVE = 365; 2105 2106 // Long-press on a QS tile. Tile spec in package field. 2107 ACTION_QS_LONG_PRESS = 366; 2108 2109 // OPEN: SUW Welcome Screen -> Vision Settings 2110 // CATEGORY: SETTINGS 2111 // OS: N 2112 SUW_ACCESSIBILITY = 367; 2113 2114 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O) 2115 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap 2116 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button 2117 // ACTION: New magnification gesture configuration is chosen 2118 // SUBTYPE: 0 is off, 1 is on 2119 // CATEGORY: SETTINGS 2120 // OS: N 2121 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368; 2122 2123 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size 2124 // ACTION: New font size is chosen 2125 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest 2126 // CATEGORY: SETTINGS 2127 // OS: N 2128 SUW_ACCESSIBILITY_FONT_SIZE = 369; 2129 2130 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size 2131 // ACTION: New display size is chosen 2132 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest 2133 // CATEGORY: SETTINGS 2134 // OS: N 2135 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370; 2136 2137 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack 2138 // ACTION: New screen reader configuration is chosen 2139 // SUBTYPE: 0 is off, 1 is on 2140 // CATEGORY: SETTINGS 2141 // OS: N 2142 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371; 2143 2144 // ------- Begin N Settings conditionals ----- 2145 // Conditionals are the green bars at the top of the settings dashboard 2146 // All conditionals will have visible/hide events onResume/onPause 2147 // but they will also be used as extra ints in the 2148 // dismiss/expand/collapse/click/button events 2149 2150 // swipe away conditional 2151 ACTION_SETTINGS_CONDITION_DISMISS = 372; 2152 2153 // click on collapsed conditional or clicks expand button 2154 ACTION_SETTINGS_CONDITION_EXPAND = 373; 2155 2156 // click collapse button on expanded conditional 2157 ACTION_SETTINGS_CONDITION_COLLAPSE = 374; 2158 2159 // click main area of expanded conditional 2160 ACTION_SETTINGS_CONDITION_CLICK = 375; 2161 2162 // click a direct button on expanded conditional 2163 ACTION_SETTINGS_CONDITION_BUTTON = 376; 2164 2165 // Airplane mode on 2166 SETTINGS_CONDITION_AIRPLANE_MODE = 377; 2167 // AKA Data saver on 2168 SETTINGS_CONDITION_BACKGROUND_DATA = 378; 2169 // Battery saver on 2170 SETTINGS_CONDITION_BATTERY_SAVER = 379; 2171 // Cellular data off 2172 SETTINGS_CONDITION_CELLULAR_DATA = 380; 2173 // Do not disturb on 2174 SETTINGS_CONDITION_DND = 381; 2175 // Hotspot on 2176 SETTINGS_CONDITION_HOTSPOT = 382; 2177 // Work profile off 2178 SETTINGS_CONDITION_WORK_MODE = 383; 2179 2180 // ------- Begin N Settings suggestions ----- 2181 // Since suggestions come from system apps, suggestions will 2182 // have generic constants and the package providing the suggestion 2183 // will be put in the package field. For suggestions in the Settings 2184 // package, the class name will be filled in instead (since settings 2185 // provides several suggetions). 2186 2187 // Settings shown/hidden on main settings dashboard. 2188 // These are actually visibility events, but visible/hidden doesn't 2189 // take a package, so these are being logged as actions. 2190 ACTION_SHOW_SETTINGS_SUGGESTION = 384; 2191 ACTION_HIDE_SETTINGS_SUGGESTION = 385; 2192 2193 // Click on a suggestion. 2194 ACTION_SETTINGS_SUGGESTION = 386; 2195 2196 // Suggestion -> Overflow -> Remove. 2197 ACTION_SETTINGS_DISMISS_SUGGESTION = 387; 2198 2199 // Settings > Apps > Gear > Special Access > Premium SMS access 2200 PREMIUM_SMS_ACCESS = 388; 2201 2202 // Logged when the user resizes the docked stack. Arguments: 2203 // 0: Split 50:50 2204 // 1: Docked smaller 2205 // 2: Docked larger 2206 ACTION_WINDOW_DOCK_RESIZE = 389; 2207 2208 // User exits split-screen by dragging the divider to the side of the screen. Arguments 2209 // 0: Docked gets maximized 2210 // 1: Fullscreen gets maximized 2211 ACTION_WINDOW_UNDOCK_MAX = 390; 2212 2213 // User tried to dock an unresizable app. 2214 ACTION_WINDOW_DOCK_UNRESIZABLE = 391; 2215 2216 // System UI Tuner > Other > Power notification controls 2217 TUNER_POWER_NOTIFICATION_CONTROLS = 392; 2218 2219 // System UI Tuner > Other > Power notification controls > Toggle on/off 2220 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393; 2221 2222 // Action: user enable / disabled data saver using Settings 2223 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle 2224 // VALUE: 1 for enabled, 0 for disabled 2225 // CATEGORY: SETTINGS 2226 // OS: N 2227 ACTION_DATA_SAVER_MODE = 394; 2228 2229 // User whitelisted an app for Data Saver mode; action pass package name of app 2230 // Action: user enable / disabled data saver using Settings 2231 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on 2232 // or 2233 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on 2234 // VALUE: package name of APP 2235 // CATEGORY: SETTINGS 2236 // OS: N 2237 ACTION_DATA_SAVER_WHITELIST = 395; 2238 2239 // User blacklisted an app for Data Saver mode; action pass package name of app 2240 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off 2241 // VALUE: package name of APP 2242 // CATEGORY: SETTINGS 2243 // OS: N 2244 ACTION_DATA_SAVER_BLACKLIST = 396; 2245 2246 // User opened a remote input view associated with a notification. Passes package name of app 2247 // that posted the notification. Note that this can also happen transiently during notification 2248 // reinflation. 2249 ACTION_REMOTE_INPUT_OPEN = 397; 2250 2251 // User attempt to send data through a remote input view associated with a notification. 2252 // Passes package name of app that posted the notification. May succeed or fail. 2253 ACTION_REMOTE_INPUT_SEND = 398; 2254 2255 // Failed attempt to send data through a remote input view associated with a 2256 // notification. Passes package name of app that posted the notification. 2257 ACTION_REMOTE_INPUT_FAIL = 399; 2258 2259 // User closed a remote input view associated with a notification. Passes package name of app 2260 // that posted the notification. Note that this can also happen transiently during notification 2261 // reinflation. 2262 ACTION_REMOTE_INPUT_CLOSE = 400; 2263 2264 // OPEN: Settings > Accounts > Work profile settings 2265 // CATEGORY: SETTINGS 2266 ACCOUNTS_WORK_PROFILE_SETTINGS = 401; 2267 2268 // Settings -> Dev options -> Convert to file encryption 2269 // DEPRECATED: this setting was removed in Android T. 2270 CONVERT_FBE = 402 [deprecated=true]; 2271 2272 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT... 2273 // DEPRECATED: this setting was removed in Android T. 2274 CONVERT_FBE_CONFIRM = 403 [deprecated=true]; 2275 2276 // Settings -> Dev options -> Running services 2277 RUNNING_SERVICES = 404; 2278 2279 // The dialog shown by 3P intent to change current webview implementation. 2280 WEBVIEW_IMPLEMENTATION = 405; 2281 2282 // Settings launched from expanded quick settings. 2283 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406; 2284 2285 // Notification expansion state toggled by the expand affordance. 2286 ACTION_NOTIFICATION_EXPANDER = 407; 2287 2288 // Notification group expansion state toggled by the expand affordance. 2289 ACTION_NOTIFICATION_GROUP_EXPANDER = 408; 2290 2291 2292 // Notification expansion state toggled by the expand gesture. 2293 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409; 2294 2295 // Notification group expansion state toggled by the expand gesture. 2296 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410; 2297 2298 // User performs gesture that activates the ambient display 2299 // 1: Gesture performed is Nudge 2300 // 2: Gesture performed is Pickup 2301 // 4: Gesture performed is Double Tap 2302 // 6: Gesture performed is Reach 2303 ACTION_AMBIENT_GESTURE = 411; 2304 2305 // ---- End N Constants, all N constants go above this line ---- 2306 2307 // ------- Begin N App Disambig Shade ----- 2308 // Application disambig shade opened or closed with a featured app. 2309 // These are actually visibility events, but visible/hidden doesn't 2310 // take a package, so these are being logged as actions. 2311 // Package: Calling app on open, called app on close 2312 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451; 2313 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452; 2314 2315 // Application disambig shade opened or closed without a featured app. 2316 // These are actually visibility events, but visible/hidden doesn't 2317 // take a package, so these are being logged as actions. 2318 // Package: Calling app on open, called app on close 2319 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453; 2320 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454; 2321 2322 // User opens in an app by pressing “Always” in the application disambig shade. 2323 // Subtype: Index of selection 2324 ACTION_APP_DISAMBIG_ALWAYS = 455; 2325 2326 // User opens in an app by pressing “Just Once” in the application disambig shade. 2327 // Subtype: Index of selection 2328 ACTION_APP_DISAMBIG_JUST_ONCE = 456; 2329 2330 // User opens in an app by tapping on its name in the application disambig shade. 2331 // Subtype: Index of selection 2332 ACTION_APP_DISAMBIG_TAP = 457; 2333 2334 // OPEN: Settings > Internal storage > Storage manager 2335 // CATEGORY: SETTINGS 2336 STORAGE_MANAGER_SETTINGS = 458; 2337 2338 // OPEN: Settings -> Gestures 2339 // CATEGORY: SETTINGS 2340 SETTINGS_GESTURES = 459; 2341 2342 // ------ Begin Deletion Helper ------ 2343 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle 2344 // SUBTYPE: false is off, true is on 2345 // CATEGORY: SETTINGS 2346 ACTION_DELETION_SELECTION_PHOTOS = 460; 2347 2348 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle 2349 // SUBTYPE: false is off, true is on 2350 // CATEGORY: SETTINGS 2351 ACTION_DELETION_SELECTION_ALL_APPS = 461; 2352 2353 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app 2354 // CATEGORY: SETTINGS 2355 // PACKAGE: Unchecked app 2356 ACTION_DELETION_SELECTION_APP_ON = 462; 2357 2358 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app 2359 // CATEGORY: SETTINGS 2360 // PACKAGE: Checked app 2361 ACTION_DELETION_SELECTION_APP_OFF = 463; 2362 2363 // ACTION: Settings > Storage > Free Up Space > Apps > Click category 2364 // SUBTYPE: false is expanded, true is collapsed 2365 // CATEGORY: SETTINGS 2366 ACTION_DELETION_APPS_COLLAPSED = 464; 2367 2368 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On 2369 // SUBTYPE: false is off, true is on 2370 // CATEGORY: SETTINGS 2371 ACTION_DELETION_SELECTION_DOWNLOADS = 465; 2372 2373 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category 2374 // SUBTYPE: false is expanded, true is collapsed 2375 // CATEGORY: SETTINGS 2376 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466; 2377 2378 // ACTION: Settings > Storage > Free Up Space > Free up ... GB 2379 // CATEGORY: SETTINGS 2380 ACTION_DELETION_HELPER_CLEAR = 467; 2381 2382 // ACTION: Settings > Storage > Free Up Space > Cancel 2383 // CATEGORY: SETTINGS 2384 ACTION_DELETION_HELPER_CANCEL = 468; 2385 2386 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove 2387 // CATEGORY: SETTINGS 2388 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469; 2389 2390 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel 2391 // CATEGORY: SETTINGS 2392 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470; 2393 2394 // Deletion helper encountered an error during package deletion. 2395 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471; 2396 2397 // Deletion helper encountered an error during downloads folder deletion. 2398 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472; 2399 2400 // Deletion helper encountered an error during photo and video deletion. 2401 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473; 2402 2403 // OPEN: Settings (root page if there are multiple tabs) 2404 // CATEGORY: SETTINGS 2405 DASHBOARD_CONTAINER = 474; 2406 2407 // OPEN: Settings -> SUPPORT TAB 2408 // CATEGORY: SETTINGS 2409 SUPPORT_FRAGMENT = 475; 2410 2411 // ACTION: Settings -> Select summary tab. 2412 // CATEGORY: SETTINGS 2413 ACTION_SELECT_SUMMARY = 476; 2414 2415 // ACTION: Settings -> Select support tab. 2416 // CATEGORY: SETTINGS 2417 ACTION_SELECT_SUPPORT_FRAGMENT = 477; 2418 2419 // ACTION: Settings -> Support -> Tips & tricks 2420 // CATEGORY: SETTINGS 2421 ACTION_SUPPORT_TIPS_AND_TRICKS = 478; 2422 2423 // ACTION: Settings -> Support -> Help & feedback 2424 // CATEGORY: SETTINGS 2425 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479; 2426 2427 // ACTION: Settings -> Support -> Sign in 2428 // CATEGORY: SETTINGS 2429 ACTION_SUPPORT_SIGN_IN = 480; 2430 2431 // ACTION: Settings -> Support -> Phone 2432 // CATEGORY: SETTINGS 2433 ACTION_SUPPORT_PHONE = 481; 2434 2435 // ACTION: Settings -> Support -> Chat 2436 // CATEGORY: SETTINGS 2437 ACTION_SUPPORT_CHAT = 482; 2438 2439 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel 2440 // CATEGORY: SETTINGS 2441 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483; 2442 2443 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK 2444 // CATEGORY: SETTINGS 2445 ACTION_SUPPORT_DISCLAIMER_OK = 484; 2446 2447 // ACTION: Settings -> Support -> Toll-Free Phone 2448 // CATEGORY: SETTINGS 2449 ACTION_SUPPORT_DAIL_TOLLFREE = 485; 2450 2451 // ACTION: Settings -> Support -> "Travel Abroad" Button 2452 // CATEGORY: SETTINGS 2453 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486; 2454 2455 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone 2456 // CATEGORY: SETTINGS 2457 ACTION_SUPPORT_DIAL_TOLLED = 487; 2458 2459 // OPEN: Settings > Display > Night Light 2460 // CATEGORY: SETTINGS 2461 NIGHT_DISPLAY_SETTINGS = 488; 2462 2463 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager 2464 // SUBTYPE: false is off, true is on 2465 ACTION_TOGGLE_STORAGE_MANAGER = 489; 2466 2467 // Settings launched from collapsed quick settings. 2468 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490; 2469 2470 // OPEN: QS Night Light tile shown 2471 // ACTION: QS Night Light tile tapped 2472 // SUBTYPE: 0 is off, 1 is on 2473 // CATEGORY: QUICK_SETTINGS 2474 QS_NIGHT_DISPLAY = 491; 2475 2476 // Night Light on 2477 SETTINGS_CONDITION_NIGHT_DISPLAY = 492; 2478 2479 // System navigation key up. 2480 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493; 2481 2482 // System navigation key down. 2483 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494; 2484 2485 // OPEN: Settings > Display -> Ambient Display 2486 // CATEGORY: SETTINGS 2487 ACTION_AMBIENT_DISPLAY = 495; 2488 2489 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ---- 2490 2491 // ACTION: The lockscreen gets shown because the SIM card was removed 2492 // SUBTYPE: false: device was previously unlocked, true: device was previously locked 2493 // CATEGORY: GLOBAL_SYSTEM_UI 2494 // OS: N-MR2 2495 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496; 2496 2497 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ---- 2498 2499 // ------- Begin N Keyboard Shortcuts Helper ----- 2500 // Keyboard Shortcuts Helper is opened/closed. 2501 KEYBOARD_SHORTCUTS_HELPER = 500; 2502 2503 // OPEN: Print Preview screen 2504 // Package: Package of app where print job is from 2505 PRINT_PREVIEW = 501; 2506 2507 // OPEN: User expands full print job options shade in print preview. 2508 PRINT_JOB_OPTIONS = 502; 2509 2510 // OPEN: “All Printers” screen for selecting printer 2511 // Subtype: # of printers listed 2512 PRINT_ALL_PRINTERS = 503; 2513 2514 // OPEN: “Add Printers” screen for adding printers 2515 // Subtype: # of enabled print service listed 2516 PRINT_ADD_PRINTERS = 504; 2517 2518 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview) 2519 // Package: Package of print service. 2520 ACTION_PRINT = 505; 2521 2522 // ACTION: User selects a printer from the dropdown in the print preview screen. This also 2523 // Count all ACTION_PRINTER_SELECT_ALL actions. 2524 // Package: Package of print service tied to printer 2525 ACTION_PRINTER_SELECT_DROPDOWN = 506; 2526 2527 // ACTION: User selects a printer from the “All printers” screen. 2528 // Package: Package of print service tied to printer 2529 ACTION_PRINTER_SELECT_ALL = 507; 2530 2531 // ACTION: User changes an option for the print job from print preview. 2532 // Subtype: 1: Copies 2533 // 2: Color mode 2534 // 3: Duplex mode 2535 // 4: Media (==Paper) size 2536 // 5: Orientation 2537 // 6: Page range 2538 // Package: Package of print service tied to printer 2539 ACTION_PRINT_JOB_OPTIONS = 508; 2540 2541 // ACTION: User searches for printer from All Printers 2542 ACTION_PRINTER_SEARCH = 509; 2543 2544 // ACTION: User selects “Add print service” button from All Printers 2545 ACTION_PRINT_SERVICE_ADD = 510; 2546 2547 // ACTION: User Enables/Disables Print Service via any means. 2548 // Subtype: 0: Enabled 2549 // 1: Disabled 2550 ACTION_PRINT_SERVICE_TOGGLE = 511; 2551 2552 // ACTION: User installs print recommended print service 2553 // Package: Package of print service 2554 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512; 2555 2556 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support 2557 // SUBTYPE: sub settings classname 2558 ACTION_SETTING_HELP_AND_FEEDBACK = 513; 2559 2560 // OPEN: Settings > Language & input > Personal dictionary (single locale) 2561 USER_DICTIONARY_SETTINGS = 514; 2562 2563 // OPEN: Settings > Date & time > Select time zone 2564 ZONE_PICKER = 515; 2565 2566 // OPEN: Settings > Security > Device administrators 2567 DEVICE_ADMIN_SETTINGS = 516; 2568 2569 // ACTION: Managed provisioning was launched to set this package as DPC app. 2570 // PACKAGE: DPC's package name. 2571 PROVISIONING_DPC_PACKAGE_NAME = 517; 2572 2573 // ACTION: Managed provisioning triggered DPC installation. 2574 // PACKAGE: Package name of package which installed DPC. 2575 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518; 2576 2577 // ACTION: Logged when provisioning activity finishes. 2578 // TIME: Indicates time taken by provisioning activity to finish in MS. 2579 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519; 2580 2581 // ACTION: Logged when preprovisioning activity finishes. 2582 // TIME: Indicates time taken by preprovisioning activity to finish in MS. 2583 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520; 2584 2585 // ACTION: Logged when encrypt device activity finishes. 2586 // TIME: Indicates time taken by encrypt device activity to finish in MS. 2587 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521; 2588 2589 // ACTION: Logged when web activity finishes. 2590 // TIME: Indicates total time taken by web activity to finish in MS. 2591 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522; 2592 2593 // ACTION: Logged when trampoline activity finishes. 2594 // TIME: Indicates total time taken by trampoline activity to finish in MS. 2595 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523 [deprecated=true]; 2596 2597 // ACTION: Logged when encryption activity finishes. 2598 // TIME: Indicates total time taken by post encryption activity to finish in MS. 2599 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524 [deprecated=true]; 2600 2601 // ACTION: Logged when finalization activity finishes. 2602 // TIME: Indicates time taken by finalization activity to finish in MS. 2603 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525 [deprecated=true]; 2604 2605 // OPEN: Settings Support > Phone/Chat -> Disclaimer 2606 DIALOG_SUPPORT_DISCLAIMER = 526; 2607 2608 // OPEN: Settings Support > Travel abroad 2609 DIALOG_SUPPORT_PHONE = 527; 2610 2611 // OPEN: Settings > Security > Factory Reset Protection dialog 2612 DIALOG_FRP = 528; 2613 2614 // OPEN: Settings > Custom list preference with confirmation message 2615 DIALOG_CUSTOM_LIST_CONFIRMATION = 529; 2616 2617 // OPEN: Settings > APN Editor > Error dialog 2618 DIALOG_APN_EDITOR_ERROR = 530; 2619 2620 // OPEN: Settings > Users > Edit owner info dialog 2621 DIALOG_OWNER_INFO_SETTINGS = 531; 2622 2623 // OPEN: Settings > Security > Use one lock dialog 2624 DIALOG_UNIFICATION_CONFIRMATION = 532; 2625 2626 // OPEN: Settings > Security > User Credential 2627 DIALOG_USER_CREDENTIAL = 533; 2628 2629 // OPEN: Settings > Accounts > Remove account 2630 DIALOG_REMOVE_USER = 534; 2631 2632 // OPEN: Settings > Accounts > Confirm auto sync dialog 2633 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535; 2634 2635 // OPEN: Settings > Apps > Dialog for running service details 2636 DIALOG_RUNNIGN_SERVICE = 536; 2637 2638 // OPEN: Settings > Dialog for hiding home settings 2639 DIALOG_NO_HOME = 537; 2640 2641 // OPEN: Settings > Bluetooth > Rename this device 2642 DIALOG_BLUETOOTH_RENAME = 538; 2643 2644 // OPEN: Settings > Bluetooth > Paired device profile 2645 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539; 2646 2647 // OPEN: Settings > Battery optimization > details for app 2648 DIALOG_HIGH_POWER_DETAILS = 540; 2649 2650 // OPEN: Settings > Keyboard > Show keyboard layout dialog 2651 DIALOG_KEYBOARD_LAYOUT = 541; 2652 2653 // OPEN: Settings > Wifi > WPS Setup dialog 2654 DIALOG_WPS_SETUP = 542; 2655 2656 // OPEN: Settings > WIFI Scan permission dialog 2657 DIALOG_WIFI_SCAN_MODE = 543; 2658 2659 // OPEN: Settings > WIFI Setup > Skip Wifi dialog 2660 DIALOG_WIFI_SKIP = 544; 2661 2662 // OPEN: Settings > Wireless > VPN > Config dialog 2663 DIALOG_LEGACY_VPN_CONFIG = 545; 2664 2665 // OPEN: Settings > Wireless > VPN > Config dialog for app 2666 DIALOG_VPN_APP_CONFIG = 546; 2667 2668 // OPEN: Settings > Wireless > VPN > Cannot connect dialog 2669 DIALOG_VPN_CANNOT_CONNECT = 547; 2670 2671 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog 2672 DIALOG_VPN_REPLACE_EXISTING = 548; 2673 2674 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog 2675 DIALOG_BILLING_CYCLE = 549; 2676 2677 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog 2678 DIALOG_BILLING_BYTE_LIMIT = 550; 2679 2680 // OPEN: Settings > Billing cycle > turn on data limit dialog 2681 DIALOG_BILLING_CONFIRM_LIMIT = 551; 2682 2683 // OPEN: Settings > Service > Turn off notification access dialog 2684 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552; 2685 2686 // OPEN: Settings > Sound > Use personal sound for work profile dialog 2687 DIALOG_UNIFY_SOUND_SETTINGS = 553; 2688 2689 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted. 2690 DIALOG_ZEN_ACCESS_GRANT = 554; 2691 2692 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked. 2693 DIALOG_ZEN_ACCESS_REVOKE = 555; 2694 2695 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode. 2696 DIALOG_ZEN_TIMEPICKER = 556; 2697 2698 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app. 2699 DIALOG_SERVICE_ACCESS_WARNING = 557; 2700 2701 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data) 2702 DIALOG_APP_INFO_ACTION = 558; 2703 2704 // OPEN: Settings > Storage > Dialog for forgetting a storage device 2705 DIALOG_VOLUME_FORGET = 559; 2706 2707 // OPEN: Settings > Storage > Dialog warning that a volume is slow 2708 DIALOG_VOLUME_SLOW_WARNING = 560; 2709 2710 // OPEN: Settings > Storage > Dialog for initializing a volume 2711 DIALOG_VOLUME_INIT = 561; 2712 2713 // OPEN: Settings > Storage > Dialog for unmounting a volume 2714 DIALOG_VOLUME_UNMOUNT = 562; 2715 2716 // OPEN: Settings > Storage > Dialog for renaming a volume 2717 DIALOG_VOLUME_RENAME = 563; 2718 2719 // OPEN: Settings > Storage > Dialog for clear cache 2720 DIALOG_STORAGE_CLEAR_CACHE = 564; 2721 2722 // OPEN: Settings > Storage > Dialog for system info 2723 DIALOG_STORAGE_SYSTEM_INFO = 565; 2724 2725 // OPEN: Settings > Storage > Dialog for other info 2726 DIALOG_STORAGE_OTHER_INFO = 566; 2727 2728 // OPEN: Settings > Storage > Dialog for user info 2729 DIALOG_STORAGE_USER_INFO = 567; 2730 2731 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon. 2732 DIALOG_FINGERPRINT_ICON_TOUCH = 568; 2733 2734 // OPEN: Settings > Add fingerprint > Error dialog 2735 DIALOG_FINGERPINT_ERROR = 569; 2736 2737 // OPEN: Settings > Fingerprint > Rename or delete dialog 2738 DIALOG_FINGERPINT_EDIT = 570; 2739 2740 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint 2741 DIALOG_FINGERPINT_DELETE_LAST = 571; 2742 2743 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup. 2744 DIALOG_FINGERPRINT_CANCEL_SETUP = 572; 2745 2746 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely. 2747 DIALOG_FINGERPRINT_SKIP_SETUP = 573; 2748 2749 // OPEN: Settings > Proxy Selector error dialog 2750 DIALOG_PROXY_SELECTOR_ERROR = 574; 2751 2752 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog 2753 DIALOG_WIFI_P2P_DISCONNECT = 575; 2754 2755 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog 2756 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576; 2757 2758 // OPEN: Settings > Wifi > P2P Settings > Rename dialog 2759 DIALOG_WIFI_P2P_RENAME = 577; 2760 2761 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog 2762 DIALOG_WIFI_P2P_DELETE_GROUP = 578; 2763 2764 // OPEN: Settings > APN > Restore default dialog 2765 DIALOG_APN_RESTORE_DEFAULT = 579; 2766 2767 // OPEN: Settings > Dream > When to dream dialog 2768 DIALOG_DREAM_START_DELAY = 580; 2769 2770 // OPEN: Settings > Encryption interstitial accessibility warning dialog 2771 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581; 2772 2773 // OPEN: Settings > Tether > AP setting dialog 2774 DIALOG_AP_SETTINGS = 582; 2775 2776 // OPEN: Settings > Acessibility > Enable accessiblity service dialog 2777 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583; 2778 2779 // OPEN: Settings > Acessibility > Disable accessiblity service dialog 2780 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584; 2781 2782 // OPEN: Settings > Account > Remove account dialog 2783 DIALOG_ACCOUNT_SYNC_REMOVE = 585; 2784 2785 // OPEN: Settings > Account > Remove account failed dialog 2786 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586; 2787 2788 // OPEN: Settings > Account > Cannot do onetime sync dialog 2789 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587; 2790 2791 // OPEN: Settings > Display > Night light > Set start time dialog 2792 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588; 2793 2794 // OPEN: Settings > Display > Night light > Set end time dialog 2795 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589; 2796 2797 // OPEN: Settings > User > Edit info dialog 2798 DIALOG_USER_EDIT = 590; 2799 2800 // OPEN: Settings > User > Confirm remove dialog 2801 DIALOG_USER_REMOVE = 591; 2802 2803 // DEPRECATED: Feature has been moved and dialog is no longer shown 2804 // OPEN: Settings > User > Enable calling dialog 2805 DIALOG_USER_ENABLE_CALLING = 592 [deprecated=true]; 2806 2807 // OPEN: Settings > User > Enable calling and sms dialog 2808 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593; 2809 2810 // OPEN: Settings > User > Cannot manage device message dialog 2811 DIALOG_USER_CANNOT_MANAGE = 594; 2812 2813 // OPEN: Settings > User > Add user dialog 2814 DIALOG_USER_ADD = 595; 2815 2816 // OPEN: Settings > User > Setup user dialog 2817 DIALOG_USER_SETUP = 596; 2818 2819 // OPEN: Settings > User > Setup profile dialog 2820 DIALOG_USER_SETUP_PROFILE = 597; 2821 2822 // OPEN: Settings > User > Choose user type dialog 2823 DIALOG_USER_CHOOSE_TYPE = 598; 2824 2825 // OPEN: Settings > User > Need lockscreen dialog 2826 DIALOG_USER_NEED_LOCKSCREEN = 599; 2827 2828 // OPEN: Settings > User > Confirm exit guest mode dialog 2829 DIALOG_USER_CONFIRM_EXIT_GUEST = 600; 2830 2831 // OPEN: Settings > User > Edit user profile dialog 2832 DIALOG_USER_EDIT_PROFILE = 601; 2833 2834 // OPEN: Settings > Wifi > Saved AP > Edit dialog 2835 DIALOG_WIFI_SAVED_AP_EDIT = 602; 2836 2837 // OPEN: Settings > Wifi > Edit AP dialog 2838 DIALOG_WIFI_AP_EDIT = 603; 2839 2840 // OPEN: Settings > Wifi > PBC Config dialog 2841 DIALOG_WIFI_PBC = 604; 2842 2843 // OPEN: Settings > Wifi > Display pin dialog 2844 DIALOG_WIFI_PIN = 605; 2845 2846 // OPEN: Settings > Wifi > Write config to NFC dialog 2847 DIALOG_WIFI_WRITE_NFC = 606; 2848 // OPEN: Settings > Date > Date picker dialog 2849 DIALOG_DATE_PICKER = 607; 2850 2851 // OPEN: Settings > Date > Time picker dialog 2852 DIALOG_TIME_PICKER = 608; 2853 2854 // OPEN: Settings > Wireless > Manage wireless plan dialog 2855 DIALOG_MANAGE_MOBILE_PLAN = 609; 2856 2857 // ACTION: Logs network type of the device while provisioning 2858 PROVISIONING_NETWORK_TYPE = 610; 2859 2860 // ACTION: Logs action which triggered provisioning. 2861 PROVISIONING_ACTION = 611; 2862 2863 // ACTION: Logs extra passed by the dpc while provisioning. 2864 PROVISIONING_EXTRA = 612; 2865 2866 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog 2867 BLUETOOTH_DIALOG_FRAGMENT = 613; 2868 2869 // ACTION: Logs provisioning started by zero touch. 2870 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614; 2871 2872 // ACTION: Logs provisioning started by NFC bump. 2873 PROVISIONING_ENTRY_POINT_NFC = 615; 2874 2875 // ACTION: Logs provisioning started using QR code. 2876 PROVISIONING_ENTRY_POINT_QR_CODE = 616; 2877 2878 // ACTION: Logs provisioning started using adb. 2879 PROVISIONING_ENTRY_POINT_ADB = 617; 2880 2881 // ACTION: Logs provisioning started by trusted source. 2882 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618; 2883 2884 // ACTION: Logged when copy account task finishes. 2885 // TIME: Indicates time taken by copy account task to finish in MS. 2886 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619; 2887 2888 // ACTION: Logged when create profile task finishes. 2889 // TIME: Indicates time taken by create profile task to finish in MS. 2890 PROVISIONING_CREATE_PROFILE_TASK_MS = 620; 2891 2892 // ACTION: Logged when start profile task finishes. 2893 // TIME: Indicates time taken by start profile task to finish in MS. 2894 PROVISIONING_START_PROFILE_TASK_MS = 621; 2895 2896 // ACTION: Logged when download package task finishes. 2897 // TIME: Indicates time taken by download package task to finish in MS. 2898 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622; 2899 2900 // ACTION: Logged when install package task finishes. 2901 // TIME: Indicates time taken by install package task to finish in MS. 2902 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623; 2903 2904 // ACTION: User cancelled provisioning. 2905 PROVISIONING_CANCELLED = 624; 2906 2907 // ACTION: Logged when provisioning throws an error. 2908 PROVISIONING_ERROR = 625; 2909 2910 // ACTION: Logs the status of copying user account during provisioning. 2911 PROVISIONING_COPY_ACCOUNT_STATUS = 626; 2912 2913 // ACTION: Logs the end to end time taken by all provisioning tasks. 2914 PROVISIONING_TOTAL_TASK_TIME_MS = 627; 2915 2916 // OPEN: Settings > Security 2917 // CATEGORY: SETTINGS 2918 // OS: O 2919 ENTERPRISE_PRIVACY_SETTINGS = 628; 2920 2921 // ACTION: Longpress on a TextView. 2922 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER. 2923 // CATEGORY: TEXT_CONTROLS 2924 // OS: O 2925 TEXT_LONGPRESS = 629; 2926 2927 // ACTION: An app requested an unknown permission 2928 // PACKAGE: The package name of the app requesting the permission 2929 // OBSOLETE as of Android P 2930 ACTION_PERMISSION_REQUEST_UNKNOWN = 630; 2931 2932 // ACTION: An app was granted an unknown permission 2933 // PACKAGE: The package name of the app that was granted the permission 2934 // OBSOLETE as of Android P 2935 ACTION_PERMISSION_GRANT_UNKNOWN = 631; 2936 2937 // ACTION: An app requested an unknown permission and the request was denied 2938 // PACKAGE: The package name of the app requesting the permission 2939 // OBSOLETE as of Android P 2940 ACTION_PERMISSION_DENIED_UNKNOWN = 632; 2941 2942 // ACTION: An unknown permission was revoked for an app 2943 // PACKAGE: The package name of the app the permission was revoked for 2944 // OBSOLETE as of Android P 2945 ACTION_PERMISSION_REVOKE_UNKNOWN = 633; 2946 2947 // ACTION: An app requested the permission READ_CALENDAR 2948 // PACKAGE: The package name of the app requesting the permission 2949 // OBSOLETE as of Android P 2950 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634; 2951 2952 // ACTION: An app was granted the permission READ_CALENDAR 2953 // PACKAGE: The package name of the app that was granted the permission 2954 // OBSOLETE as of Android P 2955 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635; 2956 2957 // ACTION: An app requested the permission READ_CALENDAR and the request was denied 2958 // PACKAGE: The package name of the app requesting the permission 2959 // OBSOLETE as of Android P 2960 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636; 2961 2962 // ACTION: The permission READ_CALENDAR was revoked for an app 2963 // PACKAGE: The package name of the app the permission was revoked for 2964 // OBSOLETE as of Android P 2965 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637; 2966 2967 // ACTION: An app requested the permission WRITE_CALENDAR 2968 // PACKAGE: The package name of the app requesting the permission 2969 // OBSOLETE as of Android P 2970 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638; 2971 2972 // ACTION: An app was granted the permission WRITE_CALENDAR 2973 // PACKAGE: The package name of the app that was granted the permission 2974 // OBSOLETE as of Android P 2975 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639; 2976 2977 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied 2978 // PACKAGE: The package name of the app requesting the permission 2979 // OBSOLETE as of Android P 2980 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640; 2981 2982 // ACTION: The permission WRITE_CALENDAR was revoked for an app 2983 // PACKAGE: The package name of the app the permission was revoked for 2984 // OBSOLETE as of Android P 2985 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641; 2986 2987 // ACTION: An app requested the permission CAMERA 2988 // PACKAGE: The package name of the app requesting the permission 2989 // OBSOLETE as of Android P 2990 ACTION_PERMISSION_REQUEST_CAMERA = 642; 2991 2992 // ACTION: An app was granted the permission CAMERA 2993 // PACKAGE: The package name of the app that was granted the permission 2994 // OBSOLETE as of Android P 2995 ACTION_PERMISSION_GRANT_CAMERA = 643; 2996 2997 // ACTION: An app requested the permission CAMERA and the request was denied 2998 // PACKAGE: The package name of the app requesting the permission 2999 // OBSOLETE as of Android P 3000 ACTION_PERMISSION_DENIED_CAMERA = 644; 3001 3002 // ACTION: The permission CAMERA was revoked for an app 3003 // PACKAGE: The package name of the app the permission was revoked for 3004 // OBSOLETE as of Android P 3005 ACTION_PERMISSION_REVOKE_CAMERA = 645; 3006 3007 // ACTION: An app requested the permission READ_CONTACTS 3008 // PACKAGE: The package name of the app requesting the permission 3009 // OBSOLETE as of Android P 3010 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646; 3011 3012 // ACTION: An app was granted the permission READ_CONTACTS 3013 // PACKAGE: The package name of the app that was granted the permission 3014 // OBSOLETE as of Android P 3015 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647; 3016 3017 // ACTION: An app requested the permission READ_CONTACTS and the request was denied 3018 // PACKAGE: The package name of the app requesting the permission 3019 // OBSOLETE as of Android P 3020 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648; 3021 3022 // ACTION: The permission READ_CONTACTS was revoked for an app 3023 // PACKAGE: The package name of the app the permission was revoked for 3024 // OBSOLETE as of Android P 3025 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649; 3026 3027 // ACTION: An app requested the permission WRITE_CONTACTS 3028 // PACKAGE: The package name of the app requesting the permission 3029 // OBSOLETE as of Android P 3030 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650; 3031 3032 // ACTION: An app was granted the permission WRITE_CONTACTS 3033 // PACKAGE: The package name of the app that was granted the permission 3034 // OBSOLETE as of Android P 3035 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651; 3036 3037 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied 3038 // PACKAGE: The package name of the app requesting the permission 3039 // OBSOLETE as of Android P 3040 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652; 3041 3042 // ACTION: The permission WRITE_CONTACTS was revoked for an app 3043 // PACKAGE: The package name of the app the permission was revoked for 3044 // OBSOLETE as of Android P 3045 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653; 3046 3047 // ACTION: An app requested the permission GET_ACCOUNTS 3048 // PACKAGE: The package name of the app requesting the permission 3049 // OBSOLETE as of Android P 3050 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654; 3051 3052 // ACTION: An app was granted the permission GET_ACCOUNTS 3053 // PACKAGE: The package name of the app that was granted the permission 3054 // OBSOLETE as of Android P 3055 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655; 3056 3057 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied 3058 // PACKAGE: The package name of the app requesting the permission 3059 // OBSOLETE as of Android P 3060 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656; 3061 3062 // ACTION: The permission GET_ACCOUNTS was revoked for an app 3063 // PACKAGE: The package name of the app the permission was revoked for 3064 // OBSOLETE as of Android P 3065 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657; 3066 3067 // ACTION: An app requested the permission ACCESS_FINE_LOCATION 3068 // PACKAGE: The package name of the app requesting the permission 3069 // OBSOLETE as of Android P 3070 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658; 3071 3072 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION 3073 // PACKAGE: The package name of the app that was granted the permission 3074 // OBSOLETE as of Android P 3075 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659; 3076 3077 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied 3078 // PACKAGE: The package name of the app requesting the permission 3079 // OBSOLETE as of Android P 3080 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660; 3081 3082 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app 3083 // PACKAGE: The package name of the app the permission was revoked for 3084 // OBSOLETE as of Android P 3085 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661; 3086 3087 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION 3088 // PACKAGE: The package name of the app requesting the permission 3089 // OBSOLETE as of Android P 3090 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662; 3091 3092 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION 3093 // PACKAGE: The package name of the app that was granted the permission 3094 // OBSOLETE as of Android P 3095 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663; 3096 3097 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied 3098 // PACKAGE: The package name of the app requesting the permission 3099 // OBSOLETE as of Android P 3100 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664; 3101 3102 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app 3103 // PACKAGE: The package name of the app the permission was revoked for 3104 // OBSOLETE as of Android P 3105 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665; 3106 3107 // ACTION: An app requested the permission RECORD_AUDIO 3108 // PACKAGE: The package name of the app requesting the permission 3109 // OBSOLETE as of Android P 3110 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666; 3111 3112 // ACTION: An app was granted the permission RECORD_AUDIO 3113 // PACKAGE: The package name of the app that was granted the permission 3114 // OBSOLETE as of Android P 3115 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667; 3116 3117 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied 3118 // PACKAGE: The package name of the app requesting the permission 3119 // OBSOLETE as of Android P 3120 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668; 3121 3122 // ACTION: The permission RECORD_AUDIO was revoked for an app 3123 // PACKAGE: The package name of the app the permission was revoked for 3124 // OBSOLETE as of Android P 3125 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669; 3126 3127 // ACTION: An app requested the permission READ_PHONE_STATE 3128 // PACKAGE: The package name of the app requesting the permission 3129 // OBSOLETE as of Android P 3130 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670; 3131 3132 // ACTION: An app was granted the permission READ_PHONE_STATE 3133 // PACKAGE: The package name of the app that was granted the permission 3134 // OBSOLETE as of Android P 3135 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671; 3136 3137 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied 3138 // PACKAGE: The package name of the app requesting the permission 3139 // OBSOLETE as of Android P 3140 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672; 3141 3142 // ACTION: The permission READ_PHONE_STATE was revoked for an app 3143 // PACKAGE: The package name of the app the permission was revoked for 3144 // OBSOLETE as of Android P 3145 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673; 3146 3147 // ACTION: An app requested the permission CALL_PHONE 3148 // PACKAGE: The package name of the app requesting the permission 3149 // OBSOLETE as of Android P 3150 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674; 3151 3152 // ACTION: An app was granted the permission CALL_PHONE 3153 // PACKAGE: The package name of the app that was granted the permission 3154 // OBSOLETE as of Android P 3155 ACTION_PERMISSION_GRANT_CALL_PHONE = 675; 3156 3157 // ACTION: An app requested the permission CALL_PHONE and the request was denied 3158 // PACKAGE: The package name of the app requesting the permission 3159 // OBSOLETE as of Android P 3160 ACTION_PERMISSION_DENIED_CALL_PHONE = 676; 3161 3162 // ACTION: The permission CALL_PHONE was revoked for an app 3163 // PACKAGE: The package name of the app the permission was revoked for 3164 // OBSOLETE as of Android P 3165 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677; 3166 3167 // ACTION: An app requested the permission READ_CALL_LOG 3168 // PACKAGE: The package name of the app requesting the permission 3169 // OBSOLETE as of Android P 3170 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678; 3171 3172 // ACTION: An app was granted the permission READ_CALL_LOG 3173 // PACKAGE: The package name of the app that was granted the permission 3174 // OBSOLETE as of Android P 3175 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679; 3176 3177 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied 3178 // PACKAGE: The package name of the app requesting the permission 3179 // OBSOLETE as of Android P 3180 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680; 3181 3182 // ACTION: The permission READ_CALL_LOG was revoked for an app 3183 // PACKAGE: The package name of the app the permission was revoked for 3184 // OBSOLETE as of Android P 3185 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681; 3186 3187 // ACTION: An app requested the permission WRITE_CALL_LOG 3188 // PACKAGE: The package name of the app requesting the permission 3189 // OBSOLETE as of Android P 3190 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682; 3191 3192 // ACTION: An app was granted the permission WRITE_CALL_LOG 3193 // PACKAGE: The package name of the app that was granted the permission 3194 // OBSOLETE as of Android P 3195 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683; 3196 3197 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied 3198 // PACKAGE: The package name of the app requesting the permission 3199 // OBSOLETE as of Android P 3200 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684; 3201 3202 // ACTION: The permission WRITE_CALL_LOG was revoked for an app 3203 // PACKAGE: The package name of the app the permission was revoked for 3204 // OBSOLETE as of Android P 3205 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685; 3206 3207 // ACTION: An app requested the permission ADD_VOICEMAIL 3208 // PACKAGE: The package name of the app requesting the permission 3209 // OBSOLETE as of Android P 3210 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686; 3211 3212 // ACTION: An app was granted the permission ADD_VOICEMAIL 3213 // PACKAGE: The package name of the app that was granted the permission 3214 // OBSOLETE as of Android P 3215 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687; 3216 3217 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied 3218 // PACKAGE: The package name of the app requesting the permission 3219 // OBSOLETE as of Android P 3220 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688; 3221 3222 // ACTION: The permission ADD_VOICEMAIL was revoked for an app 3223 // PACKAGE: The package name of the app the permission was revoked for 3224 // OBSOLETE as of Android P 3225 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689; 3226 3227 // ACTION: An app requested the permission USE_SIP 3228 // PACKAGE: The package name of the app requesting the permission 3229 // OBSOLETE as of Android P 3230 ACTION_PERMISSION_REQUEST_USE_SIP = 690; 3231 3232 // ACTION: An app was granted the permission USE_SIP 3233 // PACKAGE: The package name of the app that was granted the permission 3234 // OBSOLETE as of Android P 3235 ACTION_PERMISSION_GRANT_USE_SIP = 691; 3236 3237 // ACTION: An app requested the permission USE_SIP and the request was denied 3238 // PACKAGE: The package name of the app requesting the permission 3239 // OBSOLETE as of Android P 3240 ACTION_PERMISSION_DENIED_USE_SIP = 692; 3241 3242 // ACTION: The permission USE_SIP was revoked for an app 3243 // PACKAGE: The package name of the app the permission was revoked for 3244 // OBSOLETE as of Android P 3245 ACTION_PERMISSION_REVOKE_USE_SIP = 693; 3246 3247 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS 3248 // PACKAGE: The package name of the app requesting the permission 3249 // OBSOLETE as of Android P 3250 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694; 3251 3252 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS 3253 // PACKAGE: The package name of the app that was granted the permission 3254 // OBSOLETE as of Android P 3255 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695; 3256 3257 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied 3258 // PACKAGE: The package name of the app requesting the permission 3259 // OBSOLETE as of Android P 3260 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696; 3261 3262 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app 3263 // PACKAGE: The package name of the app the permission was revoked for 3264 // OBSOLETE as of Android P 3265 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697; 3266 3267 // ACTION: An app requested the permission READ_CELL_BROADCASTS 3268 // PACKAGE: The package name of the app requesting the permission 3269 // OBSOLETE as of Android P 3270 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698; 3271 3272 // ACTION: An app was granted the permission READ_CELL_BROADCASTS 3273 // PACKAGE: The package name of the app that was granted the permission 3274 // OBSOLETE as of Android P 3275 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699; 3276 3277 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied 3278 // PACKAGE: The package name of the app requesting the permission 3279 // OBSOLETE as of Android P 3280 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700; 3281 3282 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app 3283 // PACKAGE: The package name of the app the permission was revoked for 3284 // OBSOLETE as of Android P 3285 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701; 3286 3287 // ACTION: An app requested the permission BODY_SENSORS 3288 // PACKAGE: The package name of the app requesting the permission 3289 // OBSOLETE as of Android P 3290 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702; 3291 3292 // ACTION: An app was granted the permission BODY_SENSORS 3293 // PACKAGE: The package name of the app that was granted the permission 3294 // OBSOLETE as of Android P 3295 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703; 3296 3297 // ACTION: An app requested the permission BODY_SENSORS and the request was denied 3298 // PACKAGE: The package name of the app requesting the permission 3299 // OBSOLETE as of Android P 3300 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704; 3301 3302 // ACTION: The permission BODY_SENSORS was revoked for an app 3303 // PACKAGE: The package name of the app the permission was revoked for 3304 // OBSOLETE as of Android P 3305 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705; 3306 3307 // ACTION: An app requested the permission SEND_SMS 3308 // PACKAGE: The package name of the app requesting the permission 3309 // OBSOLETE as of Android P 3310 ACTION_PERMISSION_REQUEST_SEND_SMS = 706; 3311 3312 // ACTION: An app was granted the permission SEND_SMS 3313 // PACKAGE: The package name of the app that was granted the permission 3314 // OBSOLETE as of Android P 3315 ACTION_PERMISSION_GRANT_SEND_SMS = 707; 3316 3317 // ACTION: An app requested the permission SEND_SMS and the request was denied 3318 // PACKAGE: The package name of the app requesting the permission 3319 // OBSOLETE as of Android P 3320 ACTION_PERMISSION_DENIED_SEND_SMS = 708; 3321 3322 // ACTION: The permission SEND_SMS was revoked for an app 3323 // PACKAGE: The package name of the app the permission was revoked for 3324 // OBSOLETE as of Android P 3325 ACTION_PERMISSION_REVOKE_SEND_SMS = 709; 3326 3327 // ACTION: An app requested the permission RECEIVE_SMS 3328 // PACKAGE: The package name of the app requesting the permission 3329 // OBSOLETE as of Android P 3330 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710; 3331 3332 // ACTION: An app was granted the permission RECEIVE_SMS 3333 // PACKAGE: The package name of the app that was granted the permission 3334 // OBSOLETE as of Android P 3335 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711; 3336 3337 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied 3338 // PACKAGE: The package name of the app requesting the permission 3339 // OBSOLETE as of Android P 3340 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712; 3341 3342 // ACTION: The permission RECEIVE_SMS was revoked for an app 3343 // PACKAGE: The package name of the app the permission was revoked for 3344 // OBSOLETE as of Android P 3345 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713; 3346 3347 // ACTION: An app requested the permission READ_SMS 3348 // PACKAGE: The package name of the app requesting the permission 3349 // OBSOLETE as of Android P 3350 ACTION_PERMISSION_REQUEST_READ_SMS = 714; 3351 3352 // ACTION: An app was granted the permission READ_SMS 3353 // PACKAGE: The package name of the app that was granted the permission 3354 // OBSOLETE as of Android P 3355 ACTION_PERMISSION_GRANT_READ_SMS = 715; 3356 3357 // ACTION: An app requested the permission READ_SMS and the request was denied 3358 // PACKAGE: The package name of the app requesting the permission 3359 // OBSOLETE as of Android P 3360 ACTION_PERMISSION_DENIED_READ_SMS = 716; 3361 3362 // ACTION: The permission READ_SMS was revoked for an app 3363 // PACKAGE: The package name of the app the permission was revoked for 3364 // OBSOLETE as of Android P 3365 ACTION_PERMISSION_REVOKE_READ_SMS = 717; 3366 3367 // ACTION: An app requested the permission RECEIVE_WAP_PUSH 3368 // PACKAGE: The package name of the app requesting the permission 3369 // OBSOLETE as of Android P 3370 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718; 3371 3372 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH 3373 // PACKAGE: The package name of the app that was granted the permission 3374 // OBSOLETE as of Android P 3375 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719; 3376 3377 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied 3378 // PACKAGE: The package name of the app requesting the permission 3379 // OBSOLETE as of Android P 3380 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720; 3381 3382 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app 3383 // PACKAGE: The package name of the app the permission was revoked for 3384 // OBSOLETE as of Android P 3385 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721; 3386 3387 // ACTION: An app requested the permission RECEIVE_MMS 3388 // PACKAGE: The package name of the app requesting the permission 3389 // OBSOLETE as of Android P 3390 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722; 3391 3392 // ACTION: An app was granted the permission RECEIVE_MMS 3393 // PACKAGE: The package name of the app that was granted the permission 3394 // OBSOLETE as of Android P 3395 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723; 3396 3397 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied 3398 // PACKAGE: The package name of the app requesting the permission 3399 // OBSOLETE as of Android P 3400 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724; 3401 3402 // ACTION: The permission RECEIVE_MMS was revoked for an app 3403 // PACKAGE: The package name of the app the permission was revoked for 3404 // OBSOLETE as of Android P 3405 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725; 3406 3407 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE 3408 // PACKAGE: The package name of the app requesting the permission 3409 // OBSOLETE as of Android P 3410 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726; 3411 3412 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE 3413 // PACKAGE: The package name of the app that was granted the permission 3414 // OBSOLETE as of Android P 3415 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727; 3416 3417 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied 3418 // PACKAGE: The package name of the app requesting the permission 3419 // OBSOLETE as of Android P 3420 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728; 3421 3422 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app 3423 // PACKAGE: The package name of the app the permission was revoked for 3424 // OBSOLETE as of Android P 3425 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729; 3426 3427 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE 3428 // PACKAGE: The package name of the app requesting the permission 3429 // OBSOLETE as of Android P 3430 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730; 3431 3432 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE 3433 // PACKAGE: The package name of the app that was granted the permission 3434 // OBSOLETE as of Android P 3435 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731; 3436 3437 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied 3438 // PACKAGE: The package name of the app requesting the permission 3439 // OBSOLETE as of Android P 3440 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732; 3441 3442 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app 3443 // PACKAGE: The package name of the app the permission was revoked for 3444 // OBSOLETE as of Android P 3445 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733; 3446 3447 // ACTION: Logged when a provisioning session has started 3448 PROVISIONING_SESSION_STARTED = 734; 3449 3450 // ACTION: Logged when a provisioning session has completed 3451 PROVISIONING_SESSION_COMPLETED = 735; 3452 3453 // ACTION: An app requested the permission READ_PHONE_NUMBERS 3454 // PACKAGE: The package name of the app requesting the permission 3455 // OBSOLETE as of Android P 3456 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736; 3457 3458 // ACTION: An app was granted the permission READ_PHONE_NUMBERS 3459 // PACKAGE: The package name of the app that was granted the permission 3460 // OBSOLETE as of Android P 3461 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737; 3462 3463 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied 3464 // PACKAGE: The package name of the app requesting the permission 3465 // OBSOLETE as of Android P 3466 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738; 3467 3468 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app 3469 // PACKAGE: The package name of the app the permission was revoked for 3470 // OBSOLETE as of Android P 3471 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739; 3472 3473 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled) 3474 // SUBTYPE: slider value 3475 // CATEGORY: QUICK_SETTINGS 3476 // OS: 6.0 3477 ACTION_BRIGHTNESS_FOR_VR = 498; 3478 3479 // ACTION: A captive portal was detected during network validation 3480 // CATEGORY: NOTIFICATION 3481 // OS: N-MR2 3482 NOTIFICATION_NETWORK_SIGN_IN = 740; 3483 3484 // ACTION: An unvalidated network without Internet was selected by the user 3485 // CATEGORY: NOTIFICATION 3486 // OS: N-MR2 3487 NOTIFICATION_NETWORK_NO_INTERNET = 741; 3488 3489 // ACTION: A validated network failed revalidation and lost Internet access 3490 // CATEGORY: NOTIFICATION 3491 // OS: N-MR2 3492 NOTIFICATION_NETWORK_LOST_INTERNET = 742; 3493 3494 // ACTION: The system default network switched to a different network 3495 // CATEGORY: NOTIFICATION 3496 // OS: N-MR2 3497 NOTIFICATION_NETWORK_SWITCH = 743; 3498 3499 // OPEN: Settings > System 3500 SETTINGS_SYSTEM_CATEGORY = 744; 3501 3502 // OPEN: Settings > Storage 3503 SETTINGS_STORAGE_CATEGORY = 745; 3504 3505 // OPEN: Settings > Network & Internet 3506 SETTINGS_NETWORK_CATEGORY = 746; 3507 3508 // OPEN: Settings > Connected Device 3509 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747; 3510 3511 // OPEN: Settings > App & Notification 3512 SETTINGS_APP_NOTIF_CATEGORY = 748; 3513 3514 // OPEN: Settings > System > Input & Gesture 3515 SETTINGS_INPUT_CATEGORY = 749; 3516 3517 // OPEN: Settings > System > Language & Region 3518 SETTINGS_LANGUAGE_CATEGORY = 750; 3519 3520 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture 3521 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751; 3522 3523 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture 3524 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752; 3525 3526 // OPEN: Settings > System > Input & Gesture > Pick up gesture 3527 SETTINGS_GESTURE_PICKUP = 753; 3528 3529 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture 3530 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754; 3531 3532 // OPEN: Settings > System > Input & Gesture > Double twist gesture 3533 SETTINGS_GESTURE_DOUBLE_TWIST = 755; 3534 3535 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog 3536 // CATEGORY: Settings 3537 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756; 3538 3539 // These values should never appear in log outputs - they are reserved for 3540 // internal platform metrics use. 3541 RESERVED_FOR_LOGBUILDER_CATEGORY = 757; 3542 RESERVED_FOR_LOGBUILDER_TYPE = 758; 3543 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759; 3544 3545 // ACTION: "Do not show again" was enabled in the support disclaimer and the 3546 // user accepted 3547 ACTION_SKIP_DISCLAIMER_SELECTED = 760; 3548 3549 // Enclosing category for group of APP_TRANSITION_FOO events, 3550 // logged when we execute an app transition. 3551 APP_TRANSITION = 761; 3552 3553 // ACTION: User leaves Settings search UI without entering any query. 3554 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762; 3555 3556 // ACTION: Clicking on any search result in Settings. 3557 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763; 3558 3559 // ACTION: Allow Battery optimization for an app 3560 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764; 3561 3562 // ACTION: Deny Battery optimization for an app 3563 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765; 3564 3565 // ACTION: Enable Device Admin app 3566 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766; 3567 3568 // ACTION: Disable Device Admin app 3569 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767; 3570 3571 // ACTION: Allow "Do Not Disturb access" for an app 3572 APP_SPECIAL_PERMISSION_DND_ALLOW = 768; 3573 3574 // ACTION: Deny "Do Not Disturb access" for an app 3575 APP_SPECIAL_PERMISSION_DND_DENY = 769; 3576 3577 // ACTION: Allow "Draw over other apps" for an app 3578 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770; 3579 3580 // ACTION: Deny "Display over other apps" for an app 3581 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771; 3582 3583 // ACTION: Allow "VR helper services" for an app 3584 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772; 3585 3586 // ACTION: Deny "VR helper services" for an app 3587 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773; 3588 3589 // ACTION: Allow "Modify system settings" for an app 3590 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774; 3591 3592 // ACTION: Deny "Modify system settings" for an app 3593 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775; 3594 3595 // ACTION: Allow "Notification access" for an app 3596 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776; 3597 3598 // ACTION: Deny "Notification access" for an app 3599 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777; 3600 3601 // ACTION: "Premium SMS access" for an app - "ask user" option 3602 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778; 3603 3604 // ACTION: "Premium SMS access" for an app - "never allow" option 3605 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779; 3606 3607 // ACTION: "Premium SMS access" for an app - "always allow" option 3608 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780; 3609 3610 // ACTION: Allow "Unrestricted data access" for an app 3611 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781; 3612 3613 // ACTION: Deny "Unrestricted data access" for an app 3614 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782; 3615 3616 // ACTION: Allow "Usage access" for an app 3617 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783; 3618 3619 // ACTION: Deny "Usage access" for an app 3620 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784; 3621 3622 // OPEN: Settings > Apps > Default Apps > Default browser 3623 DEFAULT_BROWSER_PICKER = 785; 3624 3625 // OPEN: Settings > Apps > Default Apps > Default emergency app 3626 DEFAULT_EMERGENCY_APP_PICKER = 786; 3627 3628 // OPEN: Settings > Apps > Default Apps > Default home 3629 DEFAULT_HOME_PICKER = 787; 3630 3631 // OPEN: Settings > Apps > Default Apps > Default phone 3632 DEFAULT_PHONE_PICKER = 788; 3633 3634 // OPEN: Settings > Apps > Default Apps > Default sms 3635 DEFAULT_SMS_PICKER = 789; 3636 3637 // OPEN: Settings > Apps > Notification > Notification Assistant 3638 DEFAULT_NOTIFICATION_ASSISTANT = 790; 3639 3640 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection 3641 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791; 3642 3643 // OPEN: Settings > Apps > Default Apps > Default autofill app 3644 DEFAULT_AUTOFILL_PICKER = 792; 3645 3646 // These values should never appear in log outputs - they are reserved for 3647 // internal platform metrics use. 3648 NOTIFICATION_SINCE_CREATE_MILLIS = 793; 3649 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794; 3650 NOTIFICATION_SINCE_UPDATE_MILLIS = 795; 3651 NOTIFICATION_ID = 796; 3652 NOTIFICATION_TAG = 797; 3653 NOTIFICATION_SHADE_INDEX = 798; 3654 RESERVED_FOR_LOGBUILDER_NAME = 799; 3655 3656 // OPEN: QS NFC tile shown 3657 // ACTION: QS NFC tile tapped 3658 // CATEGORY: QUICK_SETTINGS 3659 QS_NFC = 800; 3660 3661 // These values should never appear in log outputs - they are reserved for 3662 // internal platform metrics use. 3663 RESERVED_FOR_LOGBUILDER_BUCKET = 801; 3664 RESERVED_FOR_LOGBUILDER_VALUE = 802; 3665 RESERVED_FOR_LOGBUILDER_COUNTER = 803; 3666 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804; 3667 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805; 3668 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806; 3669 3670 // ACTION: "Force stop" action on an app 3671 ACTION_APP_FORCE_STOP = 807; 3672 3673 // OPEN: Settings > Apps > Gear > Special Access > Install other apps 3674 // CATEGORY: SETTINGS 3675 // OS: 8.0 3676 MANAGE_EXTERNAL_SOURCES = 808; 3677 3678 // ACTION: Logged when terms activity finishes. 3679 // TIME: Indicates time taken by terms activity to finish in MS. 3680 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809; 3681 3682 // Indicates number of terms displayed on the terms screen. 3683 PROVISIONING_TERMS_COUNT = 810; 3684 3685 // Indicates number of terms read on the terms screen. 3686 PROVISIONING_TERMS_READ = 811; 3687 3688 // Logs that the user has edited the picture-in-picture settings. 3689 // CATEGORY: SETTINGS 3690 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812; 3691 3692 // ACTION: Allow "Enable picture-in-picture" for an app 3693 APP_PICTURE_IN_PICTURE_ALLOW = 813; 3694 3695 // ACTION: Deny "Enable picture-in-picture" for an app 3696 APP_PICTURE_IN_PICTURE_DENY = 814; 3697 3698 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch 3699 // CATEGORY: SETTINGS 3700 // OS: 8.0 3701 TTS_SLIDERS = 815; 3702 3703 // ACTION: Settings -> Display -> Theme 3704 ACTION_THEME = 816; 3705 3706 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak 3707 // ACTION: Select to Speak configuration is chosen 3708 // SUBTYPE: 0 is off, 1 is on 3709 // CATEGORY: SETTINGS 3710 // OS: N 3711 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817; 3712 3713 // OPEN: Settings > System > Backup 3714 // CATEGORY: SETTINGS 3715 // OS: O 3716 BACKUP_SETTINGS = 818; 3717 3718 // DEPRECATED: The metrics has been migrated to UiEvent per go/uievent. 3719 // ACTION: Picture-in-picture was explicitly entered for an activity 3720 // VALUE: true if it was entered while hiding as a result of moving to 3721 // another task, false otherwise 3722 ACTION_PICTURE_IN_PICTURE_ENTERED = 819 [deprecated=true]; 3723 3724 // DEPRECATED: The metrics has been migrated to UiEvent per go/uievent. 3725 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen 3726 // PACKAGE: The package name of the activity that was expanded back to fullscreen 3727 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820 [deprecated=true]; 3728 3729 // DEPRECATED: The metrics no longer used after migration to UiEvent per go/uievent. 3730 // ACTION: The activity currently in picture-in-picture was minimized 3731 // VALUE: True if the PiP was minimized, false otherwise 3732 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821 [deprecated=true]; 3733 3734 // DEPRECATED: The metrics has been migrated to UiEvent per go/uievent. 3735 // ACTION: Picture-in-picture was dismissed via the dismiss button 3736 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag 3737 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822 [deprecated=true]; 3738 3739 // DEPRECATED: The metrics has been migrated to UiEvent per go/uievent. 3740 // ACTION: The visibility of the picture-in-picture menu 3741 // VALUE: Whether or not the menu is visible 3742 ACTION_PICTURE_IN_PICTURE_MENU = 823 [deprecated=true]; 3743 3744 // DEPRECATED: The metrics has been migrated to UiEvent per go/uievent. 3745 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events, 3746 // logged when the aspect ratio changes 3747 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824 [deprecated=true]; 3748 3749 // DEPRECATED: The metrics no longer used after migration to UiEvent per go/uievent. 3750 // The current aspect ratio of the PiP, logged when it changes. 3751 PICTURE_IN_PICTURE_ASPECT_RATIO = 825 [deprecated=true]; 3752 3753 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable 3754 // CATEGORY: GLOBAL_SYSTEM_UI 3755 // OS: O 3756 FIELD_GESTURE_LENGTH = 826; 3757 3758 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable 3759 // CATEGORY: GLOBAL_SYSTEM_UI 3760 // OS: O 3761 FIELD_GESTURE_VELOCITY = 827; 3762 3763 // OPEN: Carrier demo mode password dialog 3764 CARRIER_DEMO_MODE_PASSWORD = 828; 3765 3766 // ACTION: Create a Settings shortcut item. 3767 ACTION_SETTINGS_CREATE_SHORTCUT = 829; 3768 3769 // ACTION: A tile in Settings information architecture is clicked 3770 ACTION_SETTINGS_TILE_CLICK = 830; 3771 3772 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification 3773 // updated. TYPE_DISMISS: snoozing canceled due to data being cleared on package 3774 // CATEGORY: NOTIFICATION 3775 // OS: O 3776 NOTIFICATION_SNOOZED = 831; 3777 3778 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time. 3779 // OS: O 3780 NOTIFICATION_SNOOZED_CRITERIA = 832; 3781 3782 // FIELD - The context (source) from which an action is performed 3783 // For QS, this is a boolean of whether the panel is expanded 3784 FIELD_CONTEXT = 833; 3785 3786 // ACTION: Settings advanced button is expanded 3787 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834; 3788 3789 // ACTION: Logs the number of times the saved network evaluator was used to 3790 // recommend a wifi network 3791 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835; 3792 3793 // ACTION: Logs the number of times the recommended network evaluator was 3794 // used to recommend a wifi network 3795 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836; 3796 3797 // ACTION: Logs the number of times a recommended network was resulted in a 3798 // successful connection 3799 // VALUE: true if the connection was successful, false if the connection failed 3800 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837; 3801 3802 // OPEN: Settings > Storage > Games 3803 // CATEGORY: SETTINGS 3804 // OS: O 3805 APPLICATIONS_STORAGE_GAMES = 838; 3806 3807 // OPEN: Settings > Storage > Audio and Music 3808 // CATEGORY: SETTINGS 3809 // OS: O 3810 APPLICATIONS_STORAGE_MUSIC = 839; 3811 3812 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper 3813 // CATEGORY: SETTINGS 3814 // OS: O 3815 STORAGE_FREE_UP_SPACE_NOW = 840; 3816 3817 // ACTION: Settings > Storage > Files to open the File Manager 3818 // CATEGORY: SETTINGS 3819 // OS: O 3820 STORAGE_FILES = 841; 3821 3822 // FIELD - Rank of the clicked Settings search result 3823 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842; 3824 3825 // OPEN: Settings > Apps > Default Apps > Assist > Default assist 3826 DEFAULT_ASSIST_PICKER = 843; 3827 3828 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input 3829 DEFAULT_VOICE_INPUT_PICKER = 844; 3830 3831 // OPEN: Settings > Storage > [Profile] 3832 SETTINGS_STORAGE_PROFILE = 845; 3833 3834 // OPEN: Settings > Security & screen lock -> Encryption & crendentials 3835 // CATEGORY: SETTINGS 3836 // OS: O 3837 ENCRYPTION_AND_CREDENTIAL = 846; 3838 3839 // ACTION: Settings > About device > Build number 3840 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847; 3841 3842 // FIELD: Whether developer mode has already been enabled when clicking build number preference 3843 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848; 3844 3845 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point) 3846 // CATEGORY: SETTINGS 3847 // OS: O 3848 WIFI_NETWORK_DETAILS = 849; 3849 3850 // ACTION: Settings > Battery > Menu > Usage Alerts 3851 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850; 3852 3853 // ACTION: Settings > Battery > Menu > Optimization 3854 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851; 3855 3856 // ACTION: Settings > Battery > Menu > Apps Toggle 3857 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852; 3858 3859 // ACTION: Settings > Any preference is changed 3860 ACTION_SETTINGS_PREFERENCE_CHANGE = 853; 3861 3862 // FIELD: The name of preference when it is changed in Settings 3863 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854; 3864 3865 // FIELD: The new value of preference when it is changed in Settings 3866 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855; 3867 3868 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification 3869 // channel updated 3870 // PACKAGE: the package the channel belongs too 3871 // CATEGORY: NOTIFICATION 3872 // OS: O 3873 ACTION_NOTIFICATION_CHANNEL = 856; 3874 3875 // Tagged data for notification channel. String. 3876 FIELD_NOTIFICATION_CHANNEL_ID = 857; 3877 3878 // Tagged data for notification channel. int. 3879 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858; 3880 3881 // OPEN: Notification channel group created. 3882 // PACKAGE: the package the group belongs to 3883 // CATEGORY: NOTIFICATION 3884 // OS: O 3885 ACTION_NOTIFICATION_CHANNEL_GROUP = 859; 3886 3887 // Tagged data for notification channel group. String. 3888 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860; 3889 3890 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer 3891 // CATEGORY: SETTINGS 3892 // OS: O 3893 SETTINGS_NETWORK_SCORER = 861; 3894 3895 // OPEN: Settings > About device > Model > Hardware info dialog 3896 DIALOG_SETTINGS_HARDWARE_INFO = 862; 3897 3898 // ACTION: Checks whether a contact's phone still exists 3899 // Value 0: It doesn't exist anymore 3900 // Value 1: It still exists 3901 // Value 2: A SecurityException was thrown 3902 // CATEGORY: SETTINGS 3903 // OS: N 3904 ACTION_PHONE_EXISTS = 863; 3905 3906 // ACTION: Retrieves a contact from CP2 3907 // Value 0: Contact retrieved without issues 3908 // Value 1: An IllegalArgumentException was thrown 3909 // CATEGORY: SETTINGS 3910 // OS: N 3911 ACTION_GET_CONTACT = 864; 3912 3913 // This value should never appear in log outputs - it is reserved for 3914 // internal platform metrics use. 3915 RESERVED_FOR_LOGBUILDER_PID = 865; 3916 3917 // ACTION: Settings > Connected devices > Bluetooth -> Available devices 3918 ACTION_SETTINGS_BLUETOOTH_PAIR = 866; 3919 3920 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices 3921 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867; 3922 3923 // ACTION: Settings > Connected devices > Bluetooth -> Connected device 3924 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868; 3925 3926 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog 3927 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869; 3928 3929 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle 3930 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870; 3931 3932 // The name of the activity being launched in an app transition event. 3933 FIELD_CLASS_NAME = 871; 3934 3935 // ACTION: Settings > App detail > Uninstall 3936 ACTION_SETTINGS_UNINSTALL_APP = 872; 3937 3938 // ACTION: Settings > App detail > Uninstall Device admin app 3939 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873; 3940 3941 // ACTION: Settings > App detail > Disable app 3942 ACTION_SETTINGS_DISABLE_APP = 874; 3943 3944 // ACTION: Settings > App detail > Enable app 3945 ACTION_SETTINGS_ENABLE_APP = 875; 3946 3947 // ACTION: Settings > App detail > Clear data 3948 ACTION_SETTINGS_CLEAR_APP_DATA = 876; 3949 3950 // ACTION: Settings > App detail > Clear cache 3951 ACTION_SETTINGS_CLEAR_APP_CACHE = 877; 3952 3953 // ACTION: Clicking on any search result in Settings. 3954 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878; 3955 3956 // FIELD: Settings inline search result name 3957 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879; 3958 3959 // FIELD: Settings inline search result value 3960 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880; 3961 3962 // ACTION: Settings > Search > Click saved queries 3963 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881; 3964 3965 // OPEN: Settings > Security & screen lock -> Lock screen preferences 3966 // CATEGORY: SETTINGS 3967 SETTINGS_LOCK_SCREEN_PREFERENCES = 882; 3968 3969 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS 3970 // PACKAGE: The package name of the app requesting the permission 3971 // OBSOLETE as of Android P 3972 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883; 3973 3974 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS 3975 // PACKAGE: The package name of the app that was granted the permission 3976 // OBSOLETE as of Android P 3977 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884; 3978 3979 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied 3980 // PACKAGE: The package name of the app requesting the permission 3981 // OBSOLETE as of Android P 3982 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885; 3983 3984 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app 3985 // PACKAGE: The package name of the app the permission was revoked for 3986 // OBSOLETE as of Android P 3987 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886; 3988 3989 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW 3990 // PACKAGE: The package name of the app requesting the permission 3991 // OBSOLETE as of Android P 3992 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887; 3993 3994 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW 3995 // PACKAGE: The package name of the app that was granted the permission 3996 // OBSOLETE as of Android P 3997 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888; 3998 3999 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied 4000 // PACKAGE: The package name of the app requesting the permission 4001 // OBSOLETE as of Android P 4002 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889; 4003 4004 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app 4005 // PACKAGE: The package name of the app the permission was revoked for 4006 // OBSOLETE as of Android P 4007 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890; 4008 4009 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS 4010 // PACKAGE: The package name of the app requesting the permission 4011 // OBSOLETE as of Android P 4012 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891; 4013 4014 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS 4015 // PACKAGE: The package name of the app that was granted the permission 4016 // OBSOLETE as of Android P 4017 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892; 4018 4019 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied 4020 // PACKAGE: The package name of the app requesting the permission 4021 // OBSOLETE as of Android P 4022 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893; 4023 4024 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app 4025 // PACKAGE: The package name of the app the permission was revoked for 4026 // OBSOLETE as of Android P 4027 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894; 4028 4029 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES 4030 // PACKAGE: The package name of the app requesting the permission 4031 // OBSOLETE as of Android P 4032 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895; 4033 4034 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES 4035 // PACKAGE: The package name of the app that was granted the permission 4036 // OBSOLETE as of Android P 4037 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896; 4038 4039 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied 4040 // PACKAGE: The package name of the app requesting the permission 4041 // OBSOLETE as of Android P 4042 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897; 4043 4044 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app 4045 // PACKAGE: The package name of the app the permission was revoked for 4046 // OBSOLETE as of Android P 4047 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898; 4048 4049 // ACTION: Phase 1 of instant application resolution occurred 4050 // OS: O 4051 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899; 4052 4053 // ACTION: Phase 2 of instant application resolution occurred 4054 // OS: O 4055 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900; 4056 4057 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds 4058 // OS: O 4059 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901; 4060 4061 // FIELD: The status of an ephemeral resolution phase 4062 // Value 0: success 4063 // Value 1: no full hash match 4064 // OS: O 4065 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902; 4066 4067 // FIELD - A token to identify all events that are part of the same instant application launch 4068 // OS: O 4069 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903; 4070 4071 // FIELD - The name of the package responsible for launching the activity 4072 // OS: O 4073 APP_TRANSITION_CALLING_PACKAGE_NAME = 904; 4074 4075 // FIELD - Whether or not the launched activity is part of an instant application 4076 // OS: O 4077 APP_TRANSITION_IS_EPHEMERAL = 905; 4078 4079 // An autofill session was started. 4080 // OS: O 4081 // Package: Package of app that is autofilled 4082 // NOTE: starting on OS MR1, it also added the following field: 4083 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4084 // NOTE: starting on OS P, it also added the following field: 4085 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4086 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session. 4087 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started. 4088 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4089 AUTOFILL_SESSION_STARTED = 906; 4090 4091 // An autofill request was processed by a service 4092 // Type TYPE_SUCCESS: service called FillCalback.onSuccess() 4093 // Type TYPE_FAILURE: service called FillCallback.onFailure() 4094 // Package: Package of app that is autofilled 4095 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4096 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if 4097 // the service returned a null response 4098 // NOTE: starting on OS P, it also added the following fields: 4099 // TYPE_CLOSE: request timed out before service called a FillCallback method 4100 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4101 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts 4102 // with 1. 4103 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill 4104 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field 4105 // was focused. 4106 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses. 4107 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification, 4108 // number of entries field ids in the request. 4109 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4110 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4111 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics: 4112 // - AUTOFILL_UI_LATENCY 4113 // - AUTOFILL_AUTHENTICATED; 4114 // - AUTOFILL_DATASET_AUTHENTICATED 4115 // - AUTOFILL_INVALID_AUTHENTICATION 4116 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION 4117 // NOTE: starting on OS Q, it also added the following fields: 4118 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service 4119 // Tag FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS: number of requests made to the augmented 4120 // autofill service 4121 AUTOFILL_REQUEST = 907; 4122 4123 // Tag of a field for a package of an autofill service 4124 FIELD_AUTOFILL_SERVICE = 908; 4125 4126 // Tag of a field for the number of datasets 4127 FIELD_AUTOFILL_NUM_DATASETS = 909; 4128 4129 // An autofill dataset selection UI was shown 4130 // Type TYPE_DISMISS: UI was explicityly canceled by the user 4131 // Type TYPE_CLOSE: UI was destroyed without influence of the user 4132 // Type TYPE_ACTION: dataset was selected 4133 // Type TYPE_DETAIL: authentication was selected 4134 // Package: Package of app that was autofilled 4135 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text 4136 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown 4137 // NOTE: starting on OS P, it also added the following fields: 4138 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4139 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4140 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4141 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4142 AUTOFILL_FILL_UI = 910; 4143 4144 // Tag of a field for the length of the filter text 4145 FIELD_AUTOFILL_FILTERTEXT_LEN = 911; 4146 4147 // An autofill authentication succeeded 4148 // Package: Package of app that was autofilled 4149 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4150 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS 4151 AUTOFILL_AUTHENTICATED = 912; 4152 4153 // An activity was autofilled and all values could be applied 4154 // Package: Package of app that is autofilled 4155 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled 4156 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled 4157 // NOTE: starting on OS P, it also added the following fields: 4158 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4159 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4160 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4161 AUTOFILL_DATASET_APPLIED = 913; 4162 4163 // Tag of a field for the number values to be filled in 4164 FIELD_AUTOFILL_NUM_VALUES = 914; 4165 4166 // Tag of a field for the number of views that were filled 4167 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915; 4168 4169 // An autofill save UI was shown 4170 // Type TYPE_DISMISS: UI was explicityly canceled by the user 4171 // Type TYPE_CLOSE: UI was destroyed without influence of the user 4172 // Type TYPE_ACTION: data was saved 4173 // Package: Package of app that was autofilled 4174 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved 4175 // NOTE: starting on OS P, it also added the following fields: 4176 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4177 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4178 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4179 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4180 // NOTE: starting on OS Q, it also added the following fields: 4181 // FIELD_AUTOFILL_UPDATE: Whether the UI displayed "UPDATE" instead of "SAVE" 4182 AUTOFILL_SAVE_UI = 916; 4183 4184 // Tag of a field for the number of saveable ids 4185 FIELD_AUTOFILL_NUM_IDS = 917; 4186 4187 // ACTION: An autofill service was requested to save data 4188 // Type TYPE_SUCCESS: The request succeeded right away 4189 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender 4190 // Type TYPE_FAILURE: The request failed 4191 // Package: Package of app that was autofilled 4192 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4193 // NOTE: starting on OS P, it also added the following fields: 4194 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4195 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4196 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4197 // NOTE: starting on OS Q, it also added the following fields: 4198 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service 4199 AUTOFILL_DATA_SAVE_REQUEST = 918; 4200 4201 // An auto-fill session was finished 4202 // OS: O 4203 // Package: Package of app that was autofilled 4204 // NOTE: starting on OS P, it also added the following fields: 4205 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4206 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4207 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4208 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request 4209 // is logged by a separate AUTOFILL_REQUEST metric) 4210 // NOTE: starting on OS Q, it also added the following fields: 4211 // TAg FIELD_AUTOFILL_AUGMENTED_ONLY: if the session was used just for augmented autofill 4212 AUTOFILL_SESSION_FINISHED = 919; 4213 4214 // meta-event: a reader has checkpointed the log here. 4215 METRICS_CHECKPOINT = 920; 4216 4217 // OPEN: Settings -> Display -> When in VR Mode 4218 VR_DISPLAY_PREFERENCE = 921; 4219 4220 // OPEN: Settings > Accessibility > Magnification 4221 // CATEGORY: SETTINGS 4222 // OS: O 4223 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922; 4224 4225 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant 4226 // app. 4227 // VALUE: The package name of the app 4228 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923; 4229 4230 // OPEN: Settings -> System -> Reset options 4231 RESET_DASHBOARD = 924; 4232 4233 // ACTION: QS -> Tile clicked 4234 ACTION_QS_CLICK = 925; 4235 4236 // ACTION: QS -> Secondary click 4237 ACTION_QS_SECONDARY_CLICK = 926; 4238 4239 // FIELD: Position info in QS clicks 4240 FIELD_QS_POSITION = 927; 4241 4242 // FIELD: The value of a QS tile when clicked (if applicable) 4243 FIELD_QS_VALUE = 928; 4244 4245 // ACTION: QS -> Detail panel -> more settings 4246 ACTION_QS_MORE_SETTINGS = 929; 4247 4248 // ACTION: QS -> Click date 4249 ACTION_QS_DATE = 930; 4250 4251 // ACTION: Event on nav button 4252 ACTION_NAV_BUTTON_EVENT = 931; 4253 4254 // FIELD: Flags for a nav button event 4255 FIELD_FLAGS = 932; 4256 4257 // FIELD: Action for a nav button event 4258 FIELD_NAV_ACTION = 933; 4259 4260 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete 4261 // CATEGORY: SETTINGS 4262 // OS: O 4263 FINGERPRINT_REMOVE_SIDECAR = 934; 4264 4265 // OPEN: Settings > Storage > Movies & TV 4266 // CATEGORY: SETTINGS 4267 // OS: O 4268 APPLICATIONS_STORAGE_MOVIES = 935; 4269 4270 // OPEN: Text selection "assist" menu item shown. 4271 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER. 4272 // CATEGORY: TEXT_CONTROLS 4273 // OS: O 4274 TEXT_SELECTION_MENU_ITEM_ASSIST = 936; 4275 4276 // ACTION: Text selection "assist" menu item clicked. 4277 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER. 4278 // CATEGORY: TEXT_CONTROLS 4279 // OS: O 4280 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937; 4281 4282 // OPEN: Settings > Security > Managed Device Info > Apps installed 4283 // CATEGORY: SETTINGS 4284 // OS: O 4285 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938; 4286 4287 // OPEN: Settings > Security > Managed Device Info > nnn permissions 4288 // CATEGORY: SETTINGS 4289 // OS: O 4290 ENTERPRISE_PRIVACY_PERMISSIONS = 939; 4291 4292 // OPEN: Settings > Security > Managed Device Info > Default apps 4293 // CATEGORY: SETTINGS 4294 // OS: O 4295 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940; 4296 4297 // OPEN: Settings > Notifications > An app > A channel > Importance 4298 // CATEGORY: SETTINGS 4299 // OS: O 4300 NOTIFICATION_CHANNEL_IMPORTANCE = 941; 4301 4302 // OPEN: Settings > Notifications > An app > A channel > On the lock screen 4303 // CATEGORY: SETTINGS 4304 // OS: O 4305 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942; 4306 4307 // This value should never appear in log outputs - it is reserved for 4308 // internal platform metrics use. 4309 RESERVED_FOR_LOGBUILDER_UID = 943; 4310 4311 // OPEN: Running background apps notification > List of background apps 4312 // CATEGORY: GLOBAL_SYSTEM_UI 4313 // OS: O 4314 RUNNING_BACKGROUND_APPS_DIALOG = 944; 4315 4316 // FIELD - The delay from the start of the transition until we just call bindApplication on the 4317 // client. 4318 // OS: O 4319 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945; 4320 4321 // FIELD - The group ID of a notification. 4322 // Type: string 4323 // OS: O 4324 FIELD_NOTIFICATION_GROUP_ID = 946; 4325 4326 // FIELD - If the notification is a group summary: 1. 4327 // Type: int encoded boolean 4328 // OS: O 4329 FIELD_NOTIFICATION_GROUP_SUMMARY = 947; 4330 4331 // An app attempted to forge a different component name in the AssisStructure that would be 4332 // passed to the autofill service. 4333 // OS: O (security patch) 4334 // Package: Real package of the app being autofilled 4335 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request 4336 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged 4337 // NOTE: starting on OS P, it also added the following field: 4338 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4339 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948; 4340 4341 // FIELD - The component that an app tried tro forged. 4342 // Type: string 4343 // OS: O (security patch) 4344 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949; 4345 4346 // ---- End O Constants, all O constants go above this line ---- 4347 4348 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera 4349 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986; 4350 4351 // OPEN: Settings > Battery > High Usage > Abnormal app page 4352 // CATEGORY: SETTINGS 4353 FUELGAUGE_ANOMALY_DETAIL = 987; 4354 4355 // OPEN: Settings > Battery > High Usage 4356 DIALOG_HANDLE_ANOMALY = 988; 4357 4358 // ACTION: Camera lift gesture 4359 // CATEGORY: GLOBAL_SYSTEM_UI 4360 // OS: O 4361 ACTION_CAMERA_LIFT_TRIGGER = 989; 4362 4363 // OPEN: Choose screen lock dialog in Settings 4364 // CATEGORY: SETTINGS 4365 // OS: O DR 4366 SETTINGS_CHOOSE_LOCK_DIALOG = 990; 4367 4368 // OPEN: Assist Gesture training intro in Settings 4369 // CATEGORY: SETTINGS 4370 // OS: O DR 4371 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991; 4372 4373 // OPEN: Assist Gesture training enrolling in Settings 4374 // CATEGORY: SETTINGS 4375 // OS: O DR 4376 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992; 4377 4378 // OPEN: Assist Gesture training finished in Settings 4379 // CATEGORY: SETTINGS 4380 // OS: O DR 4381 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993; 4382 4383 // FIELD: The numeric preference value (of type long) when it is changed in Settings 4384 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994; 4385 4386 // FIELD: The numeric preference value (of type float) when it is changed in Settings 4387 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995; 4388 4389 // OPEN: Settings > System > Languages & input > Assist gesture 4390 // CATEGORY: SETTINGS 4391 // OS: O DR 4392 SETTINGS_ASSIST_GESTURE = 996; 4393 4394 // ACTION: Assist gesture released without triggering 4395 // CATEGORY: GLOBAL_SYSTEM_UI 4396 // OS: O DR 4397 ASSIST_GESTURE_RELEASED = 997; 4398 4399 // ACTION: Assist gesture primed 4400 // CATEGORY: GLOBAL_SYSTEM_UI 4401 // OS: O DR 4402 ASSIST_GESTURE_PRIMED = 998; 4403 4404 // ACTION: Assist gesture triggered 4405 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF 4406 // CATEGORY: GLOBAL_SYSTEM_UI 4407 // OS: O DR 4408 ASSIST_GESTURE_TRIGGERED = 999; 4409 4410 // ACTION: Update default app from Settings 4411 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000; 4412 4413 // FIELD - Query length when Settings search result is clicked 4414 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001; 4415 4416 // FIELD - Number of results when Settings search result is clicked 4417 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002; 4418 4419 // OPEN: Settings > Display > Ambient Display 4420 // CATEGORY: SETTINGS 4421 // OS: O DR 4422 AMBIENT_DISPLAY_SETTINGS = 1003; 4423 4424 // ACTION: CaptivePortalLoginActivity starts 4425 // CATEGORY: GLOBAL_SYSTEM_UI 4426 // OS: O DR 4427 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004; 4428 4429 // ACTION: CaptivePortalLoginActivity auto-closes 4430 // CATEGORY: GLOBAL_SYSTEM_UI 4431 // OS: O DR 4432 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005; 4433 4434 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network 4435 // CATEGORY: GLOBAL_SYSTEM_UI 4436 // OS: O DR 4437 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006; 4438 4439 // ACTION: CaptivePortalLoginActivity > Menu > Use this network 4440 // CATEGORY: GLOBAL_SYSTEM_UI 4441 // OS: O DR 4442 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007; 4443 4444 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network 4445 // CATEGORY: SETTINGS 4446 // OS: O DR 4447 ACTION_WIFI_SIGNIN = 1008; 4448 4449 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device) 4450 // CATEGORY: SETTINGS 4451 // OS: O DR 4452 BLUETOOTH_DEVICE_DETAILS = 1009; 4453 4454 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation 4455 CONFIGURE_KEYGUARD_DIALOG = 1010; 4456 4457 // Open: Settings > Search > No Result View 4458 SETTINGS_SEARCH_NO_RESULT = 1011; 4459 4460 // OPEN: Assist Gesture before training 4461 // CATEGORY: SETTINGS 4462 // OS: O DR 4463 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012; 4464 4465 // CaptivePortalLoginActivity displays SSL error page 4466 // CATEGORY: GLOBAL_SYSTEM_UI 4467 // OS: O DR 4468 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013; 4469 4470 // OPEN: Settings > Network > Tether > Wi-Fi hotspot 4471 WIFI_TETHER_SETTINGS = 1014; 4472 4473 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device) 4474 // -> Edit name button. 4475 // CATEGORY: SETTINGS 4476 // OS: O DR 4477 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015; 4478 4479 // ACTION: Settings > Notification Settings > Open application notification 4480 // CATEGORY: SETTINGS 4481 // OS: O DR 4482 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016; 4483 4484 // ACTION: Settings > App Info > Open app settings 4485 // CATEGORY: SETTINGS 4486 // OS: O DR 4487 ACTION_OPEN_APP_SETTING = 1017; 4488 4489 // OPEN: Settings > Connected devices > Bluetooth > Pair new device 4490 // CATEGORY: SETTINGS 4491 // OS: O DR 4492 BLUETOOTH_PAIRING = 1018; 4493 4494 // ACTION: Collect PSD Signals 4495 // CATEGORY: SETTINGS 4496 // OS: O DR 4497 ACTION_PSD_LOADER = 1019; 4498 4499 // ACTION: Background check action on an app 4500 // CATEGORY: SETTINGS 4501 // OS: O DR 4502 ACTION_APP_BACKGROUND_CHECK = 1020; 4503 4504 // ACTION: Location check action on an app 4505 // CATEGORY: SETTINGS 4506 // OS: O DR 4507 ACTION_APP_LOCATION_CHECK = 1021; 4508 4509 // Device headset status 4510 // CATEGORY: OTHER 4511 // SUBTYPE: 1 is DON, 2 is DOFF 4512 // OS: O DR 4513 ACTION_HEADSET_STATUS = 1022; 4514 4515 // Device Headset Plug status 4516 // CATEGORY: OTHER 4517 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug 4518 // OS: O DR 4519 ACTION_HEADSET_PLUG = 1023; 4520 4521 // Device Headset battery level on Plug 4522 // CATEGORY: OTHER 4523 // FIELD - The battery percentage when the user decided to plug in 4524 // Type: integer 4525 // OS: O DR 4526 FIELD_PLUG_BATTERY_PERCENTAGE = 1024; 4527 4528 // Device Headset battery level on Plug 4529 // CATEGORY: OTHER 4530 // FIELD - The battery percentage when the user decided to plug in 4531 // Type: integer 4532 // OS: O DR 4533 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025; 4534 4535 // Device Headset Pose status 4536 // CATEGORY: OTHER 4537 // SUBTYPE: 1 is 6DOF, 2 is 3DOF 4538 // OS: O DR 4539 ACTION_HEADSET_POSE_STATUS = 1026; 4540 4541 // Device Headset Usage session time 4542 // CATEGORY: OTHER 4543 // FIELD - The time the headset was used in a session 4544 // OS: O DR 4545 FIELD_SESSION_TIME_MS = 1027; 4546 4547 // Device Headset Idle time 4548 // CATEGORY: OTHER 4549 // FIELD - The time in between each session 4550 // OS: O DR 4551 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028; 4552 4553 // Device Headset charge session time 4554 // CATEGORY: OTHER 4555 // FIELD - The time taken for each charge 4556 // OS: O DR 4557 FIELD_TIME_OF_CHARGE_MS = 1029; 4558 4559 // Device Headset time between charge 4560 // CATEGORY: OTHER 4561 // FIELD - The time in between each charge 4562 // OS: O DR 4563 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030; 4564 4565 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device) 4566 // -> Forget button. 4567 // CATEGORY: SETTINGS 4568 // OS: O DR 4569 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031; 4570 4571 // An event from the camera service 4572 // CATEGORY: OTHER 4573 // SUBTYPE: CameraEvent 4574 // OS: O DR 4575 ACTION_CAMERA_EVENT = 1032; 4576 4577 // OPEN: Settings > Trampoline Intent > Settings page 4578 // CATEGORY: SETTINGS 4579 // OS: O DR 4580 TRAMPOLINE_SETTINGS_EVENT = 1033; 4581 4582 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ---- 4583 4584 // ACTION: Settings > Network & Internet > Mobile network > Mobile data 4585 // CATEGORY: SETTINGS 4586 // OS: O MR 4587 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081; 4588 4589 // ACTION: Settings > Network & Internet > Mobile network > Data usage 4590 // CATEGORY: SETTINGS 4591 // OS: O MR 4592 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082; 4593 4594 // FIELD - State of asynchronous ranking when Settings search result is clicked 4595 // CATEGORY: SETTINGS 4596 // OS: O MR 4597 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083; 4598 4599 // ACTION: Settings > Connected devices > SMS Mirroring 4600 // CATEGORY: SETTINGS 4601 // OS: O MR 4602 ACTION_SETTINGS_SMS_MIRRORING = 1084; 4603 4604 // ACTION: Chooser picked a ranked target. 4605 // CATEGORY: GLOBAL_SYSTEM_UI 4606 // OS: O MR 4607 ACTION_TARGET_SELECTED = 1085; 4608 4609 // FIELD - is category used in Chooser: 1. 4610 // Type: int encoded boolean 4611 // CATEGORY: GLOBAL_SYSTEM_UI 4612 // OS: O MR 4613 FIELD_IS_CATEGORY_USED = 1086; 4614 4615 // FIELD - ranked position of selected target for Chooser. 4616 // CATEGORY: GLOBAL_SYSTEM_UI 4617 // OS: O MR 4618 FIELD_RANKED_POSITION = 1087; 4619 4620 // OPEN: Settings > Data plan usage 4621 // CATEGORY: SETTINGS 4622 // OS: O MR 4623 DATA_PLAN_USAGE_SUMMARY = 1088; 4624 4625 // FIELD: The numeric preference value (of type int) when it is changed in Settings 4626 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089; 4627 4628 // ACTION: Logged when the app has notified that it has fully drawn. See 4629 // Activity.reportFullyDrawn(). 4630 APP_TRANSITION_REPORTED_DRAWN = 1090; 4631 4632 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of 4633 // the app transition. 4634 APP_TRANSITION_REPORTED_DRAWN_MS = 1091; 4635 4636 // OPEN: Settings > Storage > Photos & Videos 4637 // CATEGORY: SETTINGS 4638 // OS: O MR 4639 APPLICATIONS_STORAGE_PHOTOS = 1092; 4640 4641 // ACTION: Logged when the status bar icons change. 4642 // OS: O MR 4643 STATUS_BAR_ICONS_CHANGED = 1093; 4644 4645 // FIELD: Bitfield indicating which icons are shown. 4646 // OS: O MR 4647 FIELD_STATUS_ICONS = 1094; 4648 4649 // FIELD: Number of status icons currently shown. 4650 // OS: O MR 4651 FIELD_NUM_STATUS_ICONS = 1095; 4652 4653 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app 4654 // CATEGORY: SETTINGS 4655 // OS: O MR 4656 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096; 4657 4658 // FIELD - Whether smart suggestion ranking was enabled or not 4659 // Type: int encoded boolean 4660 // CATEGORY: SETTINGS 4661 // OS: O MR 4662 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097; 4663 4664 // ACTION: The device boots 4665 ACTION_BOOT = 1098; 4666 4667 // FIELD: A string value representing some state of the platform, e.g., boot reason 4668 FIELD_PLATFORM_REASON = 1099; 4669 4670 // CATEGORY: The category for all actions relating to selection session logging. 4671 // OS: O MR 4672 TEXT_SELECTION_SESSION = 1100; 4673 4674 // ACTION: A selection session started (i.e. the selection handles appeared) 4675 // CATEGORY: TEXT_SELECTION_SESSION 4676 // OS: O MR 4677 ACTION_TEXT_SELECTION_START = 1101; 4678 4679 // ACTION: The user modified the selection (e.g. by dragging the handles) 4680 // CATEGORY: TEXT_SELECTION_SESSION 4681 // OS: O MR 4682 ACTION_TEXT_SELECTION_MODIFY = 1102; 4683 4684 // ACTION: The user modified the selection by pressing the "select all" button. 4685 // CATEGORY: TEXT_SELECTION_SESSION 4686 // OS: O MR 4687 ACTION_TEXT_SELECTION_SELECT_ALL = 1103; 4688 4689 // ACTION: The user modified the selection by pressing on a word in a multi word selection 4690 // CATEGORY: TEXT_SELECTION_SESSION 4691 // OS: O MR 4692 ACTION_TEXT_SELECTION_RESET = 1104; 4693 4694 // ACTION: Smart selection made a single word prediction 4695 // CATEGORY: TEXT_SELECTION_SESSION 4696 // OS: O MR 4697 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105; 4698 4699 // ACTION: Smart selection made a multi word prediction 4700 // CATEGORY: TEXT_SELECTION_SESSION 4701 // OS: O MR 4702 ACTION_TEXT_SELECTION_SMART_MULTI = 1106; 4703 4704 // ACTION: The app made an automatic selection on the user's behalf (not smart selection) 4705 // CATEGORY: TEXT_SELECTION_SESSION 4706 // OS: O MR 4707 ACTION_TEXT_SELECTION_AUTO = 1107; 4708 4709 // ACTION: A selection session ended with the user typing over the text 4710 // CATEGORY: TEXT_SELECTION_SESSION 4711 // OS: O MR 4712 ACTION_TEXT_SELECTION_OVERTYPE = 1108; 4713 4714 // ACTION: A selection session ended with the user copying the text 4715 // CATEGORY: TEXT_SELECTION_SESSION 4716 // OS: O MR 4717 ACTION_TEXT_SELECTION_COPY = 1109; 4718 4719 // ACTION: A selection session ended with the user pasting over the text 4720 // CATEGORY: TEXT_SELECTION_SESSION 4721 // OS: O MR 4722 ACTION_TEXT_SELECTION_PASTE = 1110; 4723 4724 // ACTION: A selection session ended with the user cutting the text 4725 // CATEGORY: TEXT_SELECTION_SESSION 4726 // OS: O MR 4727 ACTION_TEXT_SELECTION_CUT = 1111; 4728 4729 // ACTION: A selection session ended with the user pressing the share button 4730 // CATEGORY: TEXT_SELECTION_SESSION 4731 // OS: O MR 4732 ACTION_TEXT_SELECTION_SHARE = 1112; 4733 4734 // ACTION: A selection session ended with the user pressing the smart share button 4735 // CATEGORY: TEXT_SELECTION_SESSION 4736 // OS: O MR 4737 ACTION_TEXT_SELECTION_SMART_SHARE = 1113; 4738 4739 // ACTION: A selection session ended with the user dragging the text 4740 // CATEGORY: TEXT_SELECTION_SESSION 4741 // OS: O MR 4742 ACTION_TEXT_SELECTION_DRAG = 1114; 4743 4744 // ACTION: A selection session ended with the user abandoning the selection 4745 // CATEGORY: TEXT_SELECTION_SESSION 4746 // OS: O MR 4747 ACTION_TEXT_SELECTION_ABANDON = 1115; 4748 4749 // ACTION: A selection session ended with the user picking an unhandled action bar item 4750 // CATEGORY: TEXT_SELECTION_SESSION 4751 // OS: O MR 4752 ACTION_TEXT_SELECTION_OTHER = 1116; 4753 4754 // FIELD: Time in milliseconds from the start of the session to this event 4755 // CATEGORY: TEXT_SELECTION_SESSION 4756 // OS: O MR 4757 FIELD_SELECTION_SINCE_START = 1117; 4758 4759 // FIELD: time in milliseconds between the last event in the session and this one 4760 // CATEGORY: TEXT_SELECTION_SESSION 4761 // OS: O MR 4762 FIELD_SELECTION_SINCE_PREVIOUS = 1118; 4763 4764 // FIELD: a random uid for a selection session (lasting from select start to end) 4765 // CATEGORY: TEXT_SELECTION_SESSION 4766 // OS: O MR 4767 FIELD_SELECTION_SESSION_ID = 1119; 4768 4769 // FIELD: the sequence number of the event in the session 4770 // CATEGORY: TEXT_SELECTION_SESSION 4771 // OS: O MR 4772 FIELD_SELECTION_SESSION_INDEX = 1120; 4773 4774 // FIELD: a concatenation of the widget type and ML model version. 4775 // CATEGORY: TEXT_SELECTION_SESSION 4776 // OS: O MR 4777 FIELD_SELECTION_VERSION_TAG = 1121; 4778 4779 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two 4780 // packed 16bit integers. (start in MSBs, end in LSBs) 4781 // CATEGORY: TEXT_SELECTION_SESSION 4782 // OS: O MR 4783 FIELD_SELECTION_RANGE = 1122; 4784 4785 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator), 4786 // stored as two packed 16bit integers. (start in MSBs, end in LSBs) 4787 // CATEGORY: TEXT_SELECTION_SESSION 4788 // OS: O MR 4789 FIELD_SELECTION_SMART_RANGE = 1123; 4790 4791 // The value of an autofillable and savable view was reset 4792 // Package: Package of app that was autofilled 4793 // OS: O MR 4794 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4795 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value 4796 // NOTE: starting on OS P, it also added the following fields: 4797 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4798 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4799 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4800 AUTOFILL_VALUE_RESET = 1124; 4801 4802 // Tag of AUTOFILL_VALUE_RESET 4803 // OS: O MR 4804 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125; 4805 4806 // An autofill dataset authentication succeeded 4807 // Package: Package of app that was autofilled 4808 // OS: O MR 4809 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS 4810 AUTOFILL_DATASET_AUTHENTICATED = 1126; 4811 4812 // An autofill service provided an invalid dataset authentication 4813 // Package: Package of app that was autofilled 4814 // OS: O MR 4815 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4816 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS 4817 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127; 4818 4819 // An autofill service provided an invalid authentication extra 4820 // Package: Package of app that was autofilled 4821 // OS: O MR 4822 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4823 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS 4824 AUTOFILL_INVALID_AUTHENTICATION = 1128; 4825 4826 // An autofill service used a custom description (using RemoteViews) in the autofill save UI 4827 // Package: Package of app that is autofilled 4828 // OS: O MR 4829 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4830 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service 4831 // NOTE: starting on OS P, it also added the following fields: 4832 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4833 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4834 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4835 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129; 4836 4837 // FIELD - Type of save object passed by the service when the Save UI is shown 4838 // OS: O MR 4839 FIELD_AUTOFILL_SAVE_TYPE = 1130; 4840 4841 // An autofill service used a custom subtitle (String) in the autofill save UI 4842 // Package: Package of app that is autofilled 4843 // OS: O MR 4844 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4845 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service 4846 // NOTE: starting on OS P, it also added the following fields: 4847 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4848 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4849 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4850 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131; 4851 4852 // User tapped a link in the custom description of the autofill save UI provided by an autofill service 4853 // Package: Package of app that is autofilled 4854 // OS: O MR 4855 // Type TYPE_UNKNOWN: The link was not properly set by the service 4856 // Type TYPE_OPEN: The link launched an activity 4857 // Type TYPE_FAILURE: The link could not launc an activity 4858 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4859 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service 4860 // NOTE: starting on OS P, it also added the following fields: 4861 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4862 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4863 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4864 AUTOFILL_SAVE_LINK_TAPPED = 1132; 4865 4866 // Result of the validation on save when an autofill service provided a validator 4867 // Package: Package of app that is autofilled 4868 // OS: O MR 4869 // Type TYPE_FAILURE: The validation could not be performed due to an error 4870 // Type TYPE_SUCCESS: The validation passed 4871 // Type TYPE_DISMISS: The validation failed 4872 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4873 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service 4874 // NOTE: starting on OS P, it also added the following fields: 4875 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4876 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4877 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4878 AUTOFILL_SAVE_VALIDATION = 1133; 4879 4880 // Result of an operation in the autofill save UI after the user tapped a link in the custom description 4881 // provided by the autofill service 4882 // Package: Package of app that is autofilled 4883 // OS: O MR 4884 // Type TYPE_OPEN: The autofill save UI was restored 4885 // Type TYPE_DISMISS: The autofill save UI was destroyed 4886 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager 4887 // NOTE: starting on OS P, it also added the following fields: 4888 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 4889 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 4890 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 4891 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134; 4892 4893 // Autofill service called API that disables itself 4894 // Package: Package of the autofill service 4895 // OS: O MR 4896 AUTOFILL_SERVICE_DISABLED_SELF = 1135; 4897 4898 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST 4899 // Reports how long it took to show the autofill UI after a field was focused 4900 // Tag FIELD_AUTOFILL_DURATION: Duration in ms 4901 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 4902 // Package: Package of the autofill service 4903 // OS: O MR 4904 AUTOFILL_UI_LATENCY = 1136; 4905 4906 // Action: the snooze leave-behind was shown after the user clicked the snooze icon 4907 // OS: O MR 4908 NOTIFICATION_SNOOZE_CLICKED = 1137; 4909 4910 // Action: user selected a notification snooze duration from the drop down 4911 // OS: O MR 4912 NOTIFICATION_SELECT_SNOOZE = 1138; 4913 4914 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events 4915 // OS: O MR 4916 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139; 4917 4918 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected 4919 // OS: O MR 4920 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140; 4921 4922 // Action: user tapped undo on the notification snooze leave-behind 4923 // OS: O MR 4924 NOTIFICATION_UNDO_SNOOZE = 1141; 4925 4926 // Action: user togged the visibility of the notification snooze options drop down 4927 // OS: O MR 4928 NOTIFICATION_SNOOZE_OPTIONS = 1142; 4929 4930 // OPEN: Settings > Display > Colors 4931 // CATEGORY: SETTINGS 4932 // OS: O MR 4933 COLOR_MODE_SETTINGS = 1143; 4934 4935 // Enclosing category for group of APP_TRANSITION_FOO events, 4936 // logged when we cancel an app transition. 4937 APP_TRANSITION_CANCELLED = 1144; 4938 4939 // Tag of a field representing a duration on autofill-related metrics. 4940 FIELD_AUTOFILL_DURATION = 1145; 4941 4942 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ---- 4943 4944 // OPEN: Settings > Network & Internet > Mobile network 4945 // CATEGORY: SETTINGS 4946 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200; 4947 4948 // ACTION: Settings > Network & Internet > Mobile network > Roaming 4949 // CATEGORY: SETTINGS 4950 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201; 4951 4952 // ACTION: Settings > Network & Internet > Mobile network > Advanced 4953 // CATEGORY: SETTINGS 4954 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202; 4955 4956 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode 4957 // CATEGORY: SETTINGS 4958 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203; 4959 4960 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type 4961 // CATEGORY: SETTINGS 4962 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204; 4963 4964 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks) 4965 // CATEGORY: SETTINGS 4966 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205; 4967 4968 // OPEN: Settings > Network & Internet > Mobile network > Carrier 4969 // CATEGORY: SETTINGS 4970 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206; 4971 4972 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling 4973 // CATEGORY: SETTINGS 4974 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207; 4975 4976 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling 4977 // CATEGORY: SETTINGS 4978 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208; 4979 4980 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network 4981 // CATEGORY: SETTINGS 4982 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209; 4983 4984 // ACTION: Settings > Network & Internet > Mobile network > Network 4985 // CATEGORY: SETTINGS 4986 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210; 4987 4988 // Not used anymore. 4989 FIELD_MOBILE_NETWORK = 1211; 4990 4991 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names 4992 // CATEGORY: SETTINGS 4993 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212; 4994 4995 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings 4996 // CATEGORY: SETTINGS 4997 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213; 4998 4999 // OPEN: Settings > Network & Internet > Mobile network > System select 5000 // CATEGORY: SETTINGS 5001 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214; 5002 5003 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription 5004 // CATEGORY: SETTINGS 5005 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215; 5006 5007 // ACTION: Settings > Network & Internet > Mobile network > Set up data service 5008 // CATEGORY: SETTINGS 5009 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216; 5010 5011 // OPEN: Settings > Developer Options > Experiment dashboard 5012 // CATEGORY: SETTINGS 5013 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217; 5014 5015 // OPEN: Settings > Notifications > [App] > Topic Notifications 5016 // CATEGORY: SETTINGS 5017 // OS: P 5018 NOTIFICATION_CHANNEL_GROUP = 1218; 5019 5020 // OPEN: Settings > Developer options > Enable > Info dialog 5021 // CATEGORY: SETTINGS 5022 // OS: P 5023 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219; 5024 5025 // OPEN: Settings > Developer options > OEM unlocking > Info dialog 5026 // CATEGORY: SETTINGS 5027 // OS: P 5028 DIALOG_ENABLE_OEM_UNLOCKING = 1220; 5029 5030 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] 5031 // CATEGORY: SETTINGS 5032 // OS: P 5033 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221; 5034 5035 // OPEN: Settings > Developer options > USB debugging > Info dialog 5036 // CATEGORY: SETTINGS 5037 // OS: P 5038 DIALOG_ENABLE_ADB = 1222; 5039 5040 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog 5041 // CATEGORY: SETTINGS 5042 // OS: P 5043 DIALOG_CLEAR_ADB_KEYS = 1223; 5044 5045 // Open: Settings > Developer options > Quick setting tile config 5046 // CATEGORY: SETTINGS 5047 // OS: P 5048 DEVELOPMENT_QS_TILE_CONFIG = 1224; 5049 5050 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog 5051 // CATEGORY: SETTINGS 5052 // OS: P 5053 DIALOG_LOG_PERSIST = 1225; 5054 5055 // ACTION: DND Settings > Priority only allows > Alarms toggle 5056 // SUBTYPE: 0 is off, 1 is on 5057 // CATEGORY: SETTINGS 5058 // OS: P 5059 ACTION_ZEN_ALLOW_ALARMS = 1226; 5060 5061 // ACTION: DND Settings > Priority only allows > Media toggle 5062 // SUBTYPE: 0 is off, 1 is on 5063 // CATEGORY: SETTINGS 5064 // OS: P 5065 ACTION_ZEN_ALLOW_MEDIA = 1227; 5066 5067 // An autofill service explicitly defined which view should commit the autofill context 5068 // Package: Package of app that is autofilled 5069 // OS: P 5070 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 5071 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 5072 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 5073 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 5074 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228; 5075 5076 // The autofill context was commited when the user clicked a view explicitly marked by the 5077 // service as committing it 5078 // Package: Package of app that is autofilled 5079 // OS: P 5080 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 5081 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 5082 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 5083 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229; 5084 5085 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling 5086 // CATEGORY: SETTINGS 5087 // OS: P 5088 WIFI_CALLING_FOR_SUB = 1230; 5089 5090 // An autofill service asked to disable autofill for a given application. 5091 // Package: Package of app that is being disabled for autofill 5092 // OS: P 5093 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 5094 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled 5095 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 5096 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 5097 AUTOFILL_SERVICE_DISABLED_APP = 1231; 5098 5099 // An autofill service asked to disable autofill for a given activity. 5100 // Package: Package of app whose activity is being disabled for autofill 5101 // OS: P 5102 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 5103 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill 5104 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled 5105 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 5106 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 5107 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232; 5108 5109 // ACTION: Stop an app and turn on background check 5110 // CATEGORY: SETTINGS 5111 // OS: P 5112 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233; 5113 5114 // FIELD: The action type for each anomaly 5115 // CATEGORY: SETTINGS 5116 // OS: P 5117 FIELD_ANOMALY_ACTION_TYPE = 1234; 5118 5119 // OPEN: Settings -> Battery -> Wakelock anomaly 5120 // CATEGORY: SETTINGS 5121 // OS: P 5122 ANOMALY_TYPE_WAKELOCK = 1235; 5123 5124 // OPEN: Settings -> Battery -> Wakeup alarm anomaly 5125 // CATEGORY: SETTINGS 5126 // OS: P 5127 ANOMALY_TYPE_WAKEUP_ALARM = 1236; 5128 5129 // OPEN: Settings -> Battery -> Unoptimized bt anomaly 5130 // CATEGORY: SETTINGS 5131 // OS: P 5132 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237; 5133 5134 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog. 5135 // OS: P 5136 DIALOG_OEM_LOCK_INFO = 1238; 5137 5138 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in 5139 // CATEGORY: SETTINGS 5140 // OS: P 5141 ACTION_WIFI_AUTO_SIGN_IN = 1239; 5142 5143 // Open: Settings > System > About phone > IMEI 5144 // CATEGORY: SETTINGS 5145 // OS: P 5146 DIALOG_IMEI_INFO = 1240; 5147 5148 // In permission action fields tagged like this reference the permission affected 5149 FIELD_PERMISSION = 1241; 5150 5151 // ACTION: An app requested a permission and we asked to user to approve the request 5152 // PACKAGE: The package name of the app requesting the permission 5153 // Tag FIELD_PERMISSION: Name of the permission requested 5154 ACTION_PERMISSION_REQUESTED = 1242; 5155 5156 // ACTION: An app was granted the a permission. This can happen after a user approved a request 5157 // or automatically. In the second case there will not be an 5158 // ACTION_PERMISSION_REQUESTED. 5159 // PACKAGE: The package name of the app that was granted the permission 5160 // Tag FIELD_PERMISSION: Name of the permission granted 5161 ACTION_PERMISSION_GRANTED = 1243; 5162 5163 // ACTION: An app requested the a permission and the request was denied by the user or a device 5164 // policy 5165 // PACKAGE: The package name of the app requesting the permission 5166 // Tag FIELD_PERMISSION: Name of the permission denied 5167 ACTION_PERMISSION_DENIED = 1244; 5168 5169 // ACTION: A permission was revoked 5170 // PACKAGE: The package name of the app the permission was revoked for 5171 // Tag FIELD_PERMISSION: Name of the permission revoked 5172 ACTION_PERMISSION_REVOKED = 1245; 5173 5174 // OPEN: Settings > System > About Phone > Sim status 5175 // CATEGORY: SETTINGS 5176 // OS: P 5177 DIALOG_SIM_STATUS = 1246; 5178 5179 // OPEN: Settings > System > About Phone > Android Version 5180 // CATEGORY: SETTINGS 5181 // OS: P 5182 DIALOG_FIRMWARE_VERSION = 1247; 5183 5184 // OPEN: Settings > Network & internet > Menu > Private DNS 5185 // CATEGORY: SETTINGS 5186 // OS: P 5187 DIALOG_PRIVATE_DNS = 1248; 5188 5189 // ACTION: A private dns mode been selected by user 5190 // CATEGORY: SETTINGS 5191 // OS: P 5192 ACTION_PRIVATE_DNS_MODE = 1249; 5193 5194 // FIELD: text select start offset in words (as defined by the ICU BreakIterator). 5195 // CATEGORY: TEXT_SELECTION_SESSION 5196 // OS: P 5197 FIELD_SELECTION_RANGE_START = 1250; 5198 5199 // FIELD: text select end offset in words (as defined by the ICU BreakIterator). 5200 // CATEGORY: TEXT_SELECTION_SESSION 5201 // OS: P 5202 FIELD_SELECTION_RANGE_END = 1251; 5203 5204 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator), 5205 // stored as two packed 16bit integers. (start in MSBs, end in LSBs) 5206 // CATEGORY: TEXT_SELECTION_SESSION 5207 // OS: P 5208 FIELD_SELECTION_SMART_RANGE_START = 1252; 5209 5210 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator), 5211 // stored as two packed 16bit integers. (start in MSBs, end in LSBs) 5212 // CATEGORY: TEXT_SELECTION_SESSION 5213 // OS: P 5214 FIELD_SELECTION_SMART_RANGE_END = 1253; 5215 5216 // FIELD: the entity type of the text currently selected. 5217 // CATEGORY: TEXT_SELECTION_SESSION 5218 // OS: P 5219 FIELD_SELECTION_ENTITY_TYPE = 1254; 5220 5221 // FIELD: the type of widget the selection was made in. 5222 // CATEGORY: TEXT_SELECTION_SESSION 5223 // OS: P 5224 FIELD_SELECTION_WIDGET_TYPE = 1255; 5225 5226 // FIELD: the name of the text classifier model used. 5227 // CATEGORY: TEXT_SELECTION_SESSION 5228 // OS: P 5229 FIELD_TEXTCLASSIFIER_MODEL = 1256; 5230 5231 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages 5232 // CATEGORY: SETTINGS 5233 // OS: P 5234 NOTIFICATION_ZEN_MODE_MESSAGES = 1257; 5235 5236 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls 5237 // CATEGORY: SETTINGS 5238 // OS: P 5239 NOTIFICATION_ZEN_MODE_CALLS = 1258; 5240 5241 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off 5242 // CATEGORY: SETTINGS 5243 // OS: P 5244 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259; 5245 5246 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour) 5247 // CATEGORY: SETTINGS 5248 // OS: P 5249 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260; 5250 5251 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM) 5252 // CATEGORY: SETTINGS 5253 // OS: P 5254 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261; 5255 5256 // FIELD: the version of the widget the selection was made in. 5257 // CATEGORY: TEXT_SELECTION_SESSION 5258 // OS: P 5259 FIELD_SELECTION_WIDGET_VERSION = 1262; 5260 5261 // OPEN: Settings > Battery(version 2) 5262 // CATEGORY: SETTINGS 5263 // OS: P 5264 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263; 5265 5266 // OPEN: Settings > Connected devices > Connection preferences 5267 // CATEGORY: SETTINGS 5268 // OS: P 5269 CONNECTION_DEVICE_ADVANCED = 1264; 5270 5271 // OPEN: Settings > Security > Screen lock gear icon 5272 // CATEGORY: SETTINGS 5273 // OS: P 5274 SCREEN_LOCK_SETTINGS = 1265; 5275 5276 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon) 5277 // CATEGORY: SETTINGS 5278 // OS: P 5279 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266; 5280 5281 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK 5282 // CATEGORY: SETTINGS 5283 // OS: P 5284 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267; 5285 5286 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW 5287 // CATEGORY: SETTINGS 5288 // OS: P 5289 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268; 5290 5291 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time 5292 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name 5293 // CATEGORY: SETTINGS 5294 // OS: P 5295 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269; 5296 5297 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule 5298 // CATEGORY: SETTINGS 5299 // OS: P 5300 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270; 5301 5302 // Tag of a field for the number of ids in an autofill field classification request. 5303 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271; 5304 5305 // An autofill service updated its user data 5306 // Package: Package of the autofill service that updated the user data 5307 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset) 5308 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 5309 // OS: P 5310 AUTOFILL_USERDATA_UPDATED = 1272; 5311 5312 // Some data entered by the user matched the field classification requested by the service. 5313 // Package: Package of app that is autofilled 5314 // Counter: number of matches found 5315 // OS: P 5316 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 5317 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request 5318 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100 5319 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 5320 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 5321 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273; 5322 5323 // Tag used to report autofill field classification scores 5324 FIELD_AUTOFILL_MATCH_SCORE = 1274; 5325 5326 // ACTION: Usb config has been changed to charging 5327 // CATEGORY: SETTINGS 5328 // OS: P 5329 ACTION_USB_CONFIG_CHARGING = 1275; 5330 5331 // ACTION: Usb config has been changed to mtp (file transfer) 5332 // CATEGORY: SETTINGS 5333 // OS: P 5334 ACTION_USB_CONFIG_MTP = 1276; 5335 5336 // ACTION: Usb config has been changed to ptp (photo transfer) 5337 // CATEGORY: SETTINGS 5338 // OS: P 5339 ACTION_USB_CONFIG_PTP = 1277; 5340 5341 // ACTION: Usb config has been changed to rndis (usb tethering) 5342 // CATEGORY: SETTINGS 5343 // OS: P 5344 ACTION_USB_CONFIG_RNDIS = 1278; 5345 5346 // ACTION: Usb config has been changed to midi 5347 // CATEGORY: SETTINGS 5348 // OS: P 5349 ACTION_USB_CONFIG_MIDI = 1279; 5350 5351 // ACTION: Usb config has been changed to accessory 5352 // CATEGORY: SETTINGS 5353 // OS: P 5354 ACTION_USB_CONFIG_ACCESSORY = 1280; 5355 5356 // OPEN: Settings > Battery > Smart Battery 5357 // CATEGORY: SETTINGS 5358 // OS: P 5359 FUELGAUGE_SMART_BATTERY = 1281; 5360 5361 // ACTION: User tapped Screenshot in the power menu. 5362 // CATEGORY: GLOBAL_SYSTEM_UI 5363 // OS: P 5364 ACTION_SCREENSHOT_POWER_MENU = 1282; 5365 5366 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access 5367 // CATEGORY: SETTINGS 5368 // OS: P 5369 DIRECTORY_ACCESS = 1283; 5370 5371 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package 5372 // CATEGORY: SETTINGS 5373 // OS: P 5374 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284; 5375 5376 // OPEN: Settings > Battery > Smart Battery > Restricted apps 5377 // CATEGORY: SETTINGS 5378 // OS: P 5379 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285; 5380 5381 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now 5382 // CATEGORY: SETTINGS 5383 // OS: P 5384 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286; 5385 5386 // ACTION: Rotate suggestion accepted in rotation locked mode 5387 // CATEGORY: GLOBAL_SYSTEM_UI 5388 // OS: P 5389 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287; 5390 5391 // OPEN: Rotation suggestion shown in rotation locked mode 5392 // CATEGORY: GLOBAL_SYSTEM_UI 5393 // OS: P 5394 ROTATION_SUGGESTION_SHOWN = 1288; 5395 5396 // An autofill service was bound using an unofficial(but still supported) permission. 5397 // Package: Package of the autofill service 5398 // OS: P 5399 AUTOFILL_INVALID_PERMISSION = 1289; 5400 5401 // OPEN: QS Alarm tile shown 5402 // ACTION: QS Alarm tile tapped 5403 // SUBTYPE: 0 is off, 1 is on 5404 // CATEGORY: QUICK_SETTINGS 5405 // OS: P 5406 QS_ALARM = 1290; 5407 5408 // OPEN: Settings->Connected Devices->USB->(click on details link) 5409 // CATEGORY: SETTINGS 5410 // OS: P 5411 USB_DEVICE_DETAILS = 1291; 5412 5413 // OPEN: Settings > Accessibility > Vibration 5414 // CATEGORY: SETTINGS 5415 // OS: P 5416 ACCESSIBILITY_VIBRATION = 1292; 5417 5418 // OPEN: Settings > Accessibility > Vibration > Notification vibration 5419 // CATEGORY: SETTINGS 5420 // OS: P 5421 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293; 5422 5423 // OPEN: Settings > Accessibility > Vibration > Touch vibration 5424 // CATEGORY: SETTINGS 5425 // OS: P 5426 ACCESSIBILITY_VIBRATION_TOUCH = 1294; 5427 5428 // OPEN: Volume panel > output chooser dialog 5429 // OS: P 5430 OUTPUT_CHOOSER = 1295; 5431 5432 // Action: Volume panel > output chooser dialog > tap on device 5433 // OS: P 5434 ACTION_OUTPUT_CHOOSER_CONNECT = 1296; 5435 5436 // Action: Volume panel > output chooser dialog > tap on X next to connected device 5437 // OS: P 5438 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297; 5439 5440 // OPEN: TV Settings > Home theater control 5441 // OS: P 5442 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298; 5443 5444 // OPEN: TV Settings > TV Inputs (Inputs & Devices) 5445 // OS: P 5446 SETTINGS_TV_INPUTS_CATEGORY = 1299; 5447 5448 // OPEN: TV Settings > Device 5449 // OS: P 5450 SETTINGS_TV_DEVICE_CATEGORY = 1300; 5451 5452 // OPEN: TV Settings > Network > Proxy settings 5453 // OS: P 5454 DIALOG_TV_NETWORK_PROXY = 1301; 5455 5456 // Events for battery saver turning on/off and/or the interactive state changes. 5457 // OS: P 5458 BATTERY_SAVER = 1302; 5459 5460 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1) 5461 // OS: P 5462 FIELD_INTERACTIVE = 1303; 5463 5464 // Time spent in milliseconds in the current mode. 5465 // OS: P 5466 FIELD_DURATION_MILLIS = 1304; 5467 5468 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started. 5469 // OS: P 5470 FIELD_START_BATTERY_UA = 1305; 5471 5472 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created. 5473 // OS: P 5474 FIELD_END_BATTERY_UA = 1306; 5475 5476 // Battery level in % (0-100) when the current "mode" started. 5477 // OS: P 5478 FIELD_START_BATTERY_PERCENT = 1307; 5479 5480 // Battery level in % (0-100) when this event was created. 5481 // OS: P 5482 FIELD_END_BATTERY_PERCENT = 1308; 5483 5484 // ACTION: Settings > Display > Night Light 5485 // SUBTYPE: com.android.server.display.color.ColorDisplayService.AutoMode value 5486 // CATEGORY: SETTINGS 5487 // OS: P 5488 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309; 5489 5490 // ACTION: Settings > Display > Night Light 5491 // CATEGORY: SETTINGS 5492 // SUBTYPE: 0 is starting time, 1 is ending time 5493 // OS: P 5494 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310; 5495 5496 // FIELD: Current mode corresponding to a QS tile 5497 // CATEGORY: QUICK SETTINGS 5498 // OS: P 5499 FIELD_QS_MODE = 1311; 5500 5501 // OPEN: Settings->Developer Options->Default USB 5502 // CATEGORY: SETTINGS 5503 // OS: P 5504 USB_DEFAULT = 1312; 5505 5506 // CATEGORY: The category for all actions related to TextClassifier generateLinks. 5507 // OS: P 5508 TEXT_CLASSIFIER_GENERATE_LINKS = 1313; 5509 5510 // FIELD: milliseconds spent generating links. 5511 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS 5512 // OS: P 5513 FIELD_LINKIFY_LATENCY = 1314; 5514 5515 // FIELD: length of the input text in characters. 5516 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS 5517 // OS: P 5518 FIELD_LINKIFY_TEXT_LENGTH = 1315; 5519 5520 // FIELD: number of links detected. 5521 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS 5522 // OS: P 5523 FIELD_LINKIFY_NUM_LINKS = 1316; 5524 5525 // FIELD: length of all links in characters. 5526 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS 5527 // OS: P 5528 FIELD_LINKIFY_LINK_LENGTH = 1317; 5529 5530 // FIELD: the type of entity the stats are for. 5531 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS 5532 // OS: P 5533 FIELD_LINKIFY_ENTITY_TYPE = 1318; 5534 5535 // FIELD: a random uid for a single call to generateLinks 5536 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS 5537 // OS: P 5538 FIELD_LINKIFY_CALL_ID = 1319; 5539 5540 // FIELD: The compiler filter used when when optimizing the package. 5541 // Logged together with app transition events. 5542 // OS: P 5543 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320; 5544 5545 // FIELD: The reason for optimizing the package. 5546 // Logged together with app transition events. 5547 // OS: P 5548 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321; 5549 5550 // FIELD: The camera API level used. 5551 // CATEGORY: CAMERA 5552 // OS: P 5553 FIELD_CAMERA_API_LEVEL = 1322; 5554 5555 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog 5556 // CATEGORY: SETTINGS 5557 // OS: P 5558 FUELGAUGE_BATTERY_TIP_DIALOG = 1323; 5559 5560 // OPEN: Settings > Battery > Battery tip 5561 // CATEGORY: SETTINGS 5562 // OS: P 5563 ACTION_BATTERY_TIP_SHOWN = 1324; 5564 5565 // OPEN: Settings > Security & Location > Location > See all 5566 // CATEGORY: SETTINGS 5567 // OS: P 5568 RECENT_LOCATION_REQUESTS_ALL = 1325; 5569 5570 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width 5571 // CATEGORY: GLOBAL_SYSTEM_UI 5572 // OS: P 5573 FIELD_GESTURE_X_PERCENT = 1326; 5574 5575 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width 5576 // CATEGORY: GLOBAL_SYSTEM_UI 5577 // OS: P 5578 FIELD_GESTURE_Y_PERCENT = 1327; 5579 5580 // ACTION: Expand the notification panel while unlocked 5581 // CATEGORY: GLOBAL_SYSTEM_UI 5582 // OS: P 5583 ACTION_PANEL_VIEW_EXPAND = 1328; 5584 5585 // FIELD: Rotation of the device 5586 // CATEGORY: GLOBAL_SYSTEM_UI 5587 // OS: P 5588 FIELD_DEVICE_ROTATION = 1329; 5589 5590 // OPEN: TV Settings > Inputs > Input Options 5591 // CATEGORY: SETTINGS 5592 // OS: P 5593 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330; 5594 5595 // OPEN: TV Settings > Network & Internet > Add known WIFI network 5596 // CATEGORY: SETTINGS 5597 // OS: P 5598 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331; 5599 5600 // ACTION: DND Settings > What to block > full screen intents 5601 // SUBTYPE: false is allowed, true is blocked 5602 // CATEGORY: SETTINGS 5603 // OS: 6.0 5604 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332; 5605 5606 // ACTION: DND Settings > What to block 5607 // SUBTYPE: false is allowed, true is blocked 5608 // OS: P 5609 ACTION_ZEN_BLOCK_LIGHT = 1333; 5610 5611 // ACTION: DND Settings > What to block 5612 // SUBTYPE: false is allowed, true is blocked 5613 // OS: P 5614 ACTION_ZEN_BLOCK_PEEK = 1334; 5615 5616 // ACTION: DND Settings > What to block 5617 // SUBTYPE: false is allowed, true is blocked 5618 // OS: P 5619 ACTION_ZEN_BLOCK_STATUS = 1335; 5620 5621 // ACTION: DND Settings > What to block 5622 // SUBTYPE: false is allowed, true is blocked 5623 // OS: P 5624 ACTION_ZEN_BLOCK_BADGE = 1336; 5625 5626 // ACTION: DND Settings > What to block 5627 // SUBTYPE: false is allowed, true is blocked 5628 // OS: P 5629 ACTION_ZEN_BLOCK_AMBIENT = 1337; 5630 5631 // ACTION: DND Settings > What to block 5632 // SUBTYPE: false is allowed, true is blocked 5633 // OS: P 5634 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338; 5635 5636 // OPEN: DND Settings > What to block 5637 // OS: P 5638 ZEN_WHAT_TO_BLOCK = 1339; 5639 5640 // ACTION: DND Settings > Priority only allows > System toggle 5641 // SUBTYPE: 0 is off, 1 is on 5642 // CATEGORY: SETTINGS 5643 // OS: P 5644 ACTION_ZEN_ALLOW_SYSTEM = 1340; 5645 5646 // OPEN: Settings > Sounds > Do Not Disturb > Duration 5647 // CATEGORY: SETTINGS 5648 // OS: P 5649 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341; 5650 5651 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour) 5652 // CATEGORY: SETTINGS 5653 // OS: P 5654 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342; 5655 5656 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off 5657 // CATEGORY: SETTINGS 5658 // OS: P 5659 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343; 5660 5661 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time 5662 // CATEGORY: SETTINGS 5663 // OS: P 5664 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344; 5665 5666 // Notification Guts, active app ops variant 5667 // OS: P 5668 APP_OPS_GUTS = 1345; 5669 5670 // ACTION: Notification Guts, active app ops variant > Settings button 5671 // OS: P 5672 ACTION_OPS_GUTS_SETTINGS = 1346; 5673 5674 // ACTION: Settings > Battery settings > Battery tip > App restriction tip 5675 // OS: P 5676 ACTION_APP_RESTRICTION_TIP = 1347; 5677 5678 // ACTION: Settings > Battery settings > Battery tip > High usage tip 5679 // OS: P 5680 ACTION_HIGH_USAGE_TIP = 1348; 5681 5682 // ACTION: Settings > Battery settings > Battery tip > Summary tip 5683 // OS: P 5684 ACTION_SUMMARY_TIP = 1349; 5685 5686 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip 5687 // OS: P 5688 ACTION_SMART_BATTERY_TIP = 1350; 5689 5690 // ACTION: Settings > Battery settings > Battery tip > Early warning tip 5691 // OS: P 5692 ACTION_EARLY_WARNING_TIP = 1351; 5693 5694 // ACTION: Settings > Battery settings > Battery tip > Low battery tip 5695 // OS: P 5696 ACTION_LOW_BATTERY_TIP = 1352; 5697 5698 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown 5699 // OS: P 5700 ACTION_APP_RESTRICTION_TIP_LIST = 1353; 5701 5702 // ACTION: Settings > Battery settings > Battery tip > High usage list shown 5703 // OS: P 5704 ACTION_HIGH_USAGE_TIP_LIST = 1354; 5705 5706 // OPEN: Settings > Date & time > Select time zone -> Region 5707 // CATEGORY: SETTINGS 5708 // OS: P 5709 SETTINGS_ZONE_PICKER_REGION = 1355; 5710 5711 // OPEN: Settings > Date & time > Select time zone -> Time Zone 5712 // CATEGORY: SETTINGS 5713 // OS: P 5714 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356; 5715 5716 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset 5717 // CATEGORY: SETTINGS 5718 // OS: P 5719 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357; 5720 5721 // Action: notification shade > manage notifications 5722 // OS: P 5723 ACTION_MANAGE_NOTIFICATIONS = 1358; 5724 5725 // This value should never appear in log outputs - it is reserved for 5726 // internal platform metrics use. 5727 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359; 5728 5729 // OPEN: Settings > Gestures > Prevent Ringing 5730 // OS: P 5731 SETTINGS_PREVENT_RINGING = 1360; 5732 5733 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page 5734 // CATEGORY: SETTINGS 5735 // OS: P 5736 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361; 5737 5738 // ACTION: Settings > Battery settings > Battery tip > Restrict app 5739 // CATEGORY: SETTINGS 5740 // OS: P 5741 ACTION_TIP_RESTRICT_APP = 1362; 5742 5743 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app 5744 // CATEGORY: SETTINGS 5745 // OS: P 5746 ACTION_TIP_UNRESTRICT_APP = 1363; 5747 5748 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page 5749 // CATEGORY: SETTINGS 5750 // OS: P 5751 ACTION_TIP_OPEN_SMART_BATTERY = 1364; 5752 5753 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver 5754 // CATEGORY: SETTINGS 5755 // OS: P 5756 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365; 5757 5758 // FIELD: type of anomaly in settings app 5759 // CATEGORY: SETTINGS 5760 // OS: P 5761 FIELD_ANOMALY_TYPE = 1366; 5762 5763 // ACTION: Settings > Anomaly receiver > Anomaly received 5764 // CATEGORY: SETTINGS 5765 // OS: P 5766 ACTION_ANOMALY_TRIGGERED = 1367; 5767 5768 // ACTION: Settings > Condition > Device muted 5769 // CATEGORY: SETTINGS 5770 // OS: P 5771 SETTINGS_CONDITION_DEVICE_MUTED = 1368; 5772 5773 // ACTION: Settings > Condition > Device vibrate 5774 // CATEGORY: SETTINGS 5775 // OS: P 5776 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369; 5777 5778 // OPEN: Settings > Connected devices > previously connected devices 5779 // CATEGORY: SETTINGS 5780 // OS: P 5781 PREVIOUSLY_CONNECTED_DEVICES = 1370; 5782 5783 // ACTION: A Settings Slice is requested 5784 // CATEGORY: SETTINGS 5785 // OS: P 5786 ACTION_SETTINGS_SLICE_REQUESTED = 1371; 5787 5788 // ACTION: A Settings Slice is updated with new value 5789 // CATEGORY: SETTINGS 5790 // OS: P 5791 ACTION_SETTINGS_SLICE_CHANGED = 1372; 5792 5793 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically 5794 // note: Wifi Scanning must be off for this dialog to show 5795 // CATEGORY: SETTINGS 5796 // OS: P 5797 WIFI_SCANNING_NEEDED_DIALOG = 1373; 5798 5799 // OPEN: Settings > System > Gestures > System navigation 5800 // CATEGORY: SETTINGS 5801 // OS: P 5802 SETTINGS_GESTURE_SWIPE_UP = 1374; 5803 5804 // OPEN: Settings > Storage > Dialog to format a storage volume 5805 // CATEGORY: SETTINGS 5806 // OS: P 5807 DIALOG_VOLUME_FORMAT = 1375; 5808 5809 // OPEN: DND onboarding activity > screen on checkbox 5810 // CATEGORY: SETTINGS 5811 // OS: P 5812 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376; 5813 5814 // OPEN: DND onboarding activity > screen off checkbox 5815 // CATEGORY: SETTINGS 5816 // OS: P 5817 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377; 5818 5819 // OPEN: DND onboarding activity > Ok button 5820 // CATEGORY: SETTINGS 5821 // OS: P 5822 ACTION_ZEN_ONBOARDING_OK = 1378; 5823 5824 // OPEN: DND onboarding activity > Settings link 5825 // CATEGORY: SETTINGS 5826 // OS: P 5827 ACTION_ZEN_ONBOARDING_SETTINGS = 1379; 5828 5829 // OPEN: DND onboarding activity 5830 // CATEGORY: SETTINGS 5831 // OS: P 5832 SETTINGS_ZEN_ONBOARDING = 1380; 5833 5834 // OPEN: Settings > Display > Auto brightness 5835 // CATEGORY: SETTINGS 5836 // OS: P 5837 SETTINGS_AUTO_BRIGHTNESS = 1381; 5838 5839 // OPEN: Smart replies in a notification seen at least once 5840 // CATEGORY: NOTIFICATION 5841 // PACKAGE: App that posted the notification 5842 // SUBTYPE: Number of smart replies. 5843 // OS: P 5844 SMART_REPLY_VISIBLE = 1382; 5845 5846 // ACTION: Smart reply in a notification clicked. 5847 // CATEGORY: NOTIFICATION 5848 // PACKAGE: App that posted the notification 5849 // SUBTYPE: Index of smart reply clicked. 5850 // OS: P 5851 SMART_REPLY_ACTION = 1383; 5852 5853 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies. 5854 // OS: P 5855 NOTIFICATION_SMART_REPLY_COUNT = 1384; 5856 5857 // Volume dialog > ringer toggle 5858 // OS: P 5859 ACTION_VOLUME_RINGER_TOGGLE = 1385; 5860 5861 // Volume dialog > settings button 5862 // OS: P 5863 ACTION_VOLUME_SETTINGS = 1386; 5864 5865 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings 5866 // CATEGORY: SETTINGS 5867 // OS: P 5868 ACTION_ANOMALY_IGNORED = 1387; 5869 5870 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page 5871 // CATEGORY: SETTINGS 5872 // OS: P 5873 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388; 5874 5875 // FIELD: the version code of an app 5876 // CATEGORY: SETTINGS 5877 // OS: P 5878 FIELD_APP_VERSION_CODE = 1389; 5879 5880 // OPEN: Settings > Connected Devices > Bluetooth 5881 // CATEGORY: SETTINGS 5882 // OS: P 5883 BLUETOOTH_FRAGMENT = 1390; 5884 5885 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when 5886 // an app uses a hidden API. 5887 ACTION_HIDDEN_API_ACCESSED = 1391; 5888 5889 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API 5890 // access; see enum HiddenApiAccessMethod 5891 // OS: P 5892 FIELD_HIDDEN_API_ACCESS_METHOD = 1392; 5893 5894 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was 5895 // denied to the API. 5896 // OS: P 5897 FIELD_HIDDEN_API_ACCESS_DENIED = 1393; 5898 5899 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden 5900 // API that was accessed. 5901 // OS: P 5902 FIELD_HIDDEN_API_SIGNATURE = 1394; 5903 5904 // The number of items in the shade when this notification event was logged. 5905 // OS: P 5906 NOTIFICATION_SHADE_COUNT = 1395; 5907 5908 // ACTION: DND Settings > What to block 5909 // OS: P 5910 ACTION_ZEN_SOUND_ONLY = 1396; 5911 5912 // ACTION: DND Settings > Notifications 5913 // OS: P 5914 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397; 5915 5916 // ACTION: DND Settings > Notifications 5917 // OS: P 5918 ACTION_ZEN_SHOW_CUSTOM = 1398; 5919 5920 // ACTION: DND Settings > Notifications 5921 // OS: P 5922 ACTION_ZEN_CUSTOM = 1399; 5923 5924 // Screen: DND Settings > Notifications 5925 // OS: P 5926 SETTINGS_ZEN_NOTIFICATIONS = 1400; 5927 5928 // An event category for slices. 5929 // OPEN: Slice became visible. 5930 // CLOSE: Slice became invisible. 5931 // ACTION: Slice was tapped. 5932 SLICE = 1401; 5933 5934 // The authority part of the slice URI 5935 FIELD_SLICE_AUTHORITY = 1402; 5936 5937 // The path part of the slice URI 5938 FIELD_SLICE_PATH = 1403; 5939 5940 // The authority part of the subslice URI 5941 FIELD_SUBSLICE_AUTHORITY = 1404; 5942 5943 // The path part of the subslice URI 5944 FIELD_SUBSLICE_PATH = 1405; 5945 5946 // OPEN: DND onboarding activity > don't update button 5947 // CATEGORY: SETTINGS 5948 // OS: P 5949 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406; 5950 5951 // ACTION: Storage initialization wizard initialization choice of external/portable 5952 // CATEGORY: SETTINGS 5953 // OS: P 5954 ACTION_STORAGE_INIT_EXTERNAL = 1407; 5955 5956 // ACTION: Storage initialization wizard initialization choice of internal/adoptable 5957 // CATEGORY: SETTINGS 5958 // OS: P 5959 ACTION_STORAGE_INIT_INTERNAL = 1408; 5960 5961 // ACTION: Storage initialization wizard benchmark fast choice of continue 5962 // CATEGORY: SETTINGS 5963 // OS: P 5964 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409; 5965 5966 // ACTION: Storage initialization wizard benchmark slow choice of continue 5967 // CATEGORY: SETTINGS 5968 // OS: P 5969 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410; 5970 5971 // ACTION: Storage initialization wizard benchmark slow choice of abort 5972 // CATEGORY: SETTINGS 5973 // OS: P 5974 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411; 5975 5976 // ACTION: Storage initialization wizard migration choice of now 5977 // CATEGORY: SETTINGS 5978 // OS: P 5979 ACTION_STORAGE_MIGRATE_NOW = 1412; 5980 5981 // ACTION: Storage initialization wizard migration choice of later 5982 // CATEGORY: SETTINGS 5983 // OS: P 5984 ACTION_STORAGE_MIGRATE_LATER = 1413; 5985 5986 // Tag used to report whether an activity is being autofilled on compatibility mode. 5987 // OS: P 5988 FIELD_AUTOFILL_COMPAT_MODE = 1414; 5989 5990 // OPEN: Settings > Sound > Switch a2dp devices dialog 5991 // CATEGORY: SETTINGS 5992 // OS: P 5993 DIALOG_SWITCH_A2DP_DEVICES = 1415; 5994 5995 // OPEN: Settings > Sound > Switch hfp devices dialog 5996 // CATEGORY: SETTINGS 5997 // OS: P 5998 DIALOG_SWITCH_HFP_DEVICES = 1416; 5999 6000 // ACTION: User has started or ended charging 6001 // Type TYPE_DISMISS: Charging has ended 6002 // Type TYPE_ACTION: Charging has started, contains fields: battery level 6003 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start 6004 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end 6005 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging 6006 // Tag FIELD_PLUG_TYPE: Charging plug type 6007 ACTION_CHARGE = 1417; 6008 6009 // Tag used to determine battery level when device started charging 6010 FIELD_BATTERY_LEVEL_START = 1418; 6011 6012 // Tag used to determine battery level when device ended charging 6013 FIELD_BATTERY_LEVEL_END = 1419; 6014 6015 // Tag used to determine length of charging 6016 FIELD_CHARGING_DURATION_MILLIS = 1420; 6017 6018 // Tag used to determine what type of charging was started/ended 6019 // 1 = Plugged AC 6020 // 2 = Plugged USB 6021 // 4 = Wireless 6022 FIELD_PLUG_TYPE = 1421; 6023 6024 // ACTION: USB-C Connector connected. 6025 // CATEGORY: OTHER 6026 // OS: P 6027 ACTION_USB_CONNECTOR_CONNECTED = 1422; 6028 6029 // ACTION: USB-C Connector disconnected. 6030 // CATEGORY: OTHER 6031 // OS: P 6032 // uses FIELD_DURATION_MILLIS for connected duration 6033 ACTION_USB_CONNECTOR_DISCONNECTED = 1423; 6034 6035 // ACTION: USB-C Audio device connected 6036 // CATEGORY: OTHER 6037 // OS: P 6038 ACTION_USB_AUDIO_CONNECTED = 1424; 6039 6040 // FIELD: VIDPID of connected USB Audio device 6041 // CATEGORY: OTHER 6042 // OS: P 6043 FIELD_USB_AUDIO_VIDPID = 1425; 6044 6045 // ACTION: USB-C Audio device disconnected 6046 // CATEGORY: OTHER 6047 // OS: P 6048 // use FIELD_DURATION_MILLIS for time 6049 ACTION_USB_AUDIO_DISCONNECTED = 1426; 6050 6051 // ACTION: Hardware failure event 6052 // CATEGORY: OTHER 6053 // OS: P 6054 ACTION_HARDWARE_FAILED = 1427; 6055 6056 // FIELD: Hardware failure category 6057 // CATEGORY: OTHER 6058 // OS: P 6059 // Uses enum HardwareType 6060 FIELD_HARDWARE_TYPE = 1428; 6061 6062 // FIELD: Hardware failure category 6063 // CATEGORY: OTHER 6064 // OS: P 6065 // Uses enum HardwareFailureCode 6066 FIELD_HARDWARE_FAILURE_CODE = 1429; 6067 6068 // ACTION: Physical drop event 6069 // CATEGORY: OTHER 6070 // OS: P 6071 // use FIELD_DURATION_MILLIS for time 6072 ACTION_PHYSICAL_DROP = 1430; 6073 6074 // FIELD: Confidence in detection of drop, in integer percentage. 6075 // CATEGORY: OTHER 6076 // OS: P 6077 FIELD_CONFIDENCE_PERCENT = 1431; 6078 6079 // FIELD: Detected bounce acceleration, in 1/1000th of a G. 6080 // CATEGORY: OTHER 6081 // OS: P 6082 FIELD_ACCEL_MILLI_G = 1432; 6083 6084 // ACTION: Battery health snapshot 6085 // CATEGORY: OTHER 6086 // OS: P 6087 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt % 6088 ACTION_BATTERY_HEALTH = 1433; 6089 6090 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc. 6091 // CATEGORY: OTHER 6092 // OS: P 6093 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434; 6094 6095 // FIELD: Battery temperature at snapshot, in 1/10 deg C. 6096 // CATEGORY: OTHER 6097 // OS: P 6098 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435; 6099 6100 // FIELD: Battery voltage at snapshot, in microVolts. 6101 // CATEGORY: OTHER 6102 // OS: P 6103 FIELD_BATTERY_VOLTAGE_UV = 1436; 6104 6105 // FIELD: Battery open circuit voltage at snapshot, in microVolts. 6106 // CATEGORY: OTHER 6107 // OS: P 6108 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437; 6109 6110 // ACTION: Number of times the battery has charged beyond a 6111 // fractional threshold of full capacity. 6112 // CATEGORY: OTHER 6113 // OS: P 6114 ACTION_BATTERY_CHARGE_CYCLES = 1438; 6115 6116 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged 6117 // beyond a fractional threshold of full 6118 // capacity. A comma-separated string of 6119 // buckets. If there are eight buckets, 6120 // each bucket represents charging to n/8 6121 // percent full. 6122 // CATEGORY: OTHER 6123 // OS: P 6124 FIELD_BATTERY_CHARGE_CYCLES = 1439; 6125 6126 // ACTION: Hush gesture - volume up + power button 6127 // CATEGORY: GLOBAL_SYSTEM_UI 6128 // OS: P 6129 ACTION_HUSH_GESTURE = 1440; 6130 6131 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware 6132 // offload 6133 // CATEGORY: SETTINGS 6134 // OS: P 6135 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441; 6136 6137 // ACTION: SLOW_IO - I/O operation took longer than threshold, 6138 // reported aggregated per day when > 0. 6139 // CATEGORY: OTHER 6140 // OS: P 6141 ACTION_SLOW_IO = 1442; 6142 6143 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency. 6144 // The value is an integer from the enum IoOperation. 6145 // CATEGORY: OTHER 6146 // OS: P 6147 FIELD_IO_OPERATION_TYPE = 1443; 6148 6149 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened 6150 // over the past 24hr (reported only if > 0). 6151 // CATEGORY: OTHER 6152 // OS: P 6153 FIELD_IO_OPERATION_COUNT = 1444; 6154 6155 // ACTION: Speaker Imedance - last recorded speaker impedance. 6156 // reported max once per 24hr. 6157 // CATEGORY: OTHER 6158 // OS: P 6159 ACTION_SPEAKER_IMPEDANCE = 1445; 6160 6161 // FIELD: Speaker Impedance in milliohms. 6162 // CATEGORY: OTHER 6163 // OS: P 6164 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446; 6165 6166 // FIELD: Speaker Location - identifies one of several speakers on a device. 6167 // CATEGORY: OTHER 6168 // OS: P 6169 FIELD_SPEAKER_LOCATION = 1447; 6170 6171 // FIELD: Instantaneous battery resistance in microohms. 6172 // CATEGORY: OTHER 6173 // OS: P 6174 FIELD_BATTERY_RESISTANCE_UOHMS = 1448; 6175 6176 // FIELD: Instantaneous battery current - in microamps. 6177 // CATEGORY: OTHER 6178 // OS: P 6179 FIELD_BATTERY_CURRENT_UA = 1449; 6180 6181 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a 6182 // board. 6183 // CATEGORY: OTHER 6184 // OS: P 6185 FIELD_HARDWARE_LOCATION = 1450; 6186 6187 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the 6188 // action is logged after the subsequent boot. 6189 // CATEGORY: OTHER 6190 // OS: P 6191 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451; 6192 6193 // FIELD: Flags used on autofill-related metrics 6194 // OS: P 6195 FIELD_AUTOFILL_FLAGS = 1452; 6196 6197 // Tag used when the service returned an authenticated dataset or response. 6198 // Used to replace the following individual metrics, which now are logged as the value of this 6199 // field in the AUTOFILL_REQUEST metric: 6200 // - AUTOFILL_AUTHENTICATED; 6201 // - AUTOFILL_DATASET_AUTHENTICATED 6202 // - AUTOFILL_INVALID_AUTHENTICATION 6203 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION 6204 // OS: P 6205 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453; 6206 6207 // FIELD: Index of the autofill request inside of a session. 6208 // OS: P 6209 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454; 6210 6211 // FIELD: Number of requests made to an autofill service during a session. 6212 // OS: P 6213 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455; 6214 6215 // FIELD: Id of the autofill session associated with this metric. 6216 // OS: P 6217 FIELD_AUTOFILL_SESSION_ID = 1456; 6218 6219 // FIELD: Device USB overheat alarm trigger. 6220 // CATEGORY: GLOBAL_SYSTEM_UI 6221 // OS: P 6222 POWER_OVERHEAT_ALARM = 1457; 6223 6224 // ---- End P Constants, all P constants go above this line ---- 6225 6226 // Time since this notification last interrupted (visibly or audible) the user 6227 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500; 6228 6229 // OPEN: Notification interrupted the user, either audibly or visually. 6230 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS 6231 // CATEGORY: NOTIFICATION 6232 NOTIFICATION_INTERRUPTION = 1501; 6233 6234 // OPEN: Settings 6235 // CATEGORY: SETTINGS 6236 // OS: Q 6237 SETTINGS_HOMEPAGE = 1502; 6238 6239 // OPEN: Settings > Create shortcut(widget) 6240 // CATEGORY: SETTINGS 6241 // OS: Q 6242 SETTINGS_CREATE_SHORTCUT = 1503; 6243 6244 // ACTION: Authenticate using fingerprint 6245 // CATEGORY: SETTINGS 6246 // OS: Q 6247 ACTION_FACE_AUTH = 1504; 6248 6249 // ACTION: Add fingerprint > Enroll fingerprint 6250 // CATEGORY: SETTINGS 6251 // OS: Q 6252 ACTION_FACE_ENROLL = 1505; 6253 6254 // OPEN: Face Enroll introduction 6255 // CATEGORY: SETTINGS 6256 // OS: Q 6257 FACE_ENROLL_INTRO = 1506; 6258 6259 // OPEN: Face Enroll introduction 6260 // CATEGORY: SETTINGS 6261 // OS: Q 6262 FACE_ENROLL_ENROLLING = 1507; 6263 6264 // OPEN: Face Enroll introduction 6265 // CATEGORY: SETTINGS 6266 // OS: Q 6267 FACE_ENROLL_FINISHED = 1508; 6268 6269 // OPEN: Face Enroll sidecar 6270 // CATEGORY: SETTINGS 6271 // OS: Q 6272 FACE_ENROLL_SIDECAR = 1509; 6273 6274 // OPEN: Settings > Add face > Error dialog 6275 // OS: Q 6276 DIALOG_FACE_ERROR = 1510; 6277 6278 // OPEN: Settings > Security > Face 6279 // CATEGORY: SETTINGS 6280 // OS: Q 6281 FACE = 1511; 6282 6283 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog 6284 // CATEGORY: SETTINGS 6285 // OS: Q 6286 DIALOG_ACCESSIBILITY_HEARINGAID = 1512; 6287 6288 // ACTION: Activity start 6289 // CATEGORY: OTHER 6290 // OS: Q (will also ship in PQ1A) 6291 ACTION_ACTIVITY_START = 1513; 6292 6293 // Tagged data for ACTION_ACTIVITY_START. 6294 // FIELD: Calling UID 6295 // CATEGORY: OTHER 6296 // OS: Q (will also ship in PQ1A) 6297 FIELD_CALLING_UID = 1514; 6298 6299 // Tagged data for ACTION_ACTIVITY_START. 6300 // FIELD: Calling package name 6301 // CATEGORY: OTHER 6302 // OS: Q (will also ship in PQ1A) 6303 FIELD_CALLING_PACKAGE_NAME = 1515; 6304 6305 // Tagged data for ACTION_ACTIVITY_START. 6306 // FIELD: Calling UID proc state 6307 // CATEGORY: OTHER 6308 // OS: Q (will also ship in PQ1A) 6309 FIELD_CALLING_UID_PROC_STATE = 1516; 6310 6311 // Tagged data for ACTION_ACTIVITY_START. 6312 // FIELD: Calling UID has any visible window 6313 // CATEGORY: OTHER 6314 // OS: Q (will also ship in PQ1A) 6315 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517; 6316 6317 // Tagged data for ACTION_ACTIVITY_START. 6318 // FIELD: Real calling UID 6319 // CATEGORY: OTHER 6320 // OS: Q (will also ship in PQ1A) 6321 FIELD_REAL_CALLING_UID = 1518; 6322 6323 // Tagged data for ACTION_ACTIVITY_START. 6324 // FIELD: Real calling UID proc state 6325 // CATEGORY: OTHER 6326 // OS: Q (will also ship in PQ1A) 6327 FIELD_REAL_CALLING_UID_PROC_STATE = 1519; 6328 6329 // Tagged data for ACTION_ACTIVITY_START. 6330 // FIELD: Real calling UID has any visible window 6331 // CATEGORY: OTHER 6332 // OS: Q (will also ship in PQ1A) 6333 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520; 6334 6335 // Tagged data for ACTION_ACTIVITY_START. 6336 // FIELD: Target UID 6337 // CATEGORY: OTHER 6338 // OS: Q (will also ship in PQ1A) 6339 FIELD_TARGET_UID = 1521; 6340 6341 // Tagged data for ACTION_ACTIVITY_START. 6342 // FIELD: Target UID package name 6343 // CATEGORY: OTHER 6344 // OS: Q (will also ship in PQ1A) 6345 FIELD_TARGET_PACKAGE_NAME = 1522; 6346 6347 // Tagged data for ACTION_ACTIVITY_START. 6348 // FIELD: Target UID proc state 6349 // CATEGORY: OTHER 6350 // OS: Q (will also ship in PQ1A) 6351 FIELD_TARGET_UID_PROC_STATE = 1523; 6352 6353 // Tagged data for ACTION_ACTIVITY_START. 6354 // FIELD: Target UID has any visible window 6355 // CATEGORY: OTHER 6356 // OS: Q (will also ship in PQ1A) 6357 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524; 6358 6359 // Tagged data for ACTION_ACTIVITY_START. 6360 // FIELD: Target doze whitelist tag 6361 // CATEGORY: OTHER 6362 // OS: Q (will also ship in PQ1A) 6363 FIELD_TARGET_WHITELIST_TAG = 1525; 6364 6365 // Tagged data for ACTION_ACTIVITY_START. 6366 // FIELD: Target short component name 6367 // CATEGORY: OTHER 6368 // OS: Q (will also ship in PQ1A) 6369 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526; 6370 6371 // Tagged data for ACTION_ACTIVITY_START. 6372 // FIELD: Coming from pending intent 6373 // CATEGORY: OTHER 6374 // OS: Q (will also ship in PQ1A) 6375 FIELD_COMING_FROM_PENDING_INTENT = 1527; 6376 6377 // Tagged data for ACTION_ACTIVITY_START. 6378 // FIELD: Intent action 6379 // CATEGORY: OTHER 6380 // OS: Q (will also ship in PQ1A) 6381 FIELD_INTENT_ACTION = 1528; 6382 6383 // Tagged data for ACTION_ACTIVITY_START. 6384 // FIELD: Caller app process record process name 6385 // CATEGORY: OTHER 6386 // OS: Q (will also ship in PQ1A) 6387 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529; 6388 6389 // Tagged data for ACTION_ACTIVITY_START. 6390 // FIELD: Caller app process record current proc state 6391 // CATEGORY: OTHER 6392 // OS: Q (will also ship in PQ1A) 6393 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530; 6394 6395 // Tagged data for ACTION_ACTIVITY_START. 6396 // FIELD: Caller app process record has client activities 6397 // CATEGORY: OTHER 6398 // OS: Q (will also ship in PQ1A) 6399 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531; 6400 6401 // Tagged data for ACTION_ACTIVITY_START. 6402 // FIELD: Caller app process record has foreground services 6403 // CATEGORY: OTHER 6404 // OS: Q (will also ship in PQ1A) 6405 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532; 6406 6407 // Tagged data for ACTION_ACTIVITY_START. 6408 // FIELD: Caller app process record has foreground activities 6409 // CATEGORY: OTHER 6410 // OS: Q (will also ship in PQ1A) 6411 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533; 6412 6413 // Tagged data for ACTION_ACTIVITY_START. 6414 // FIELD: Caller app process record has top UI 6415 // CATEGORY: OTHER 6416 // OS: Q (will also ship in PQ1A) 6417 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534; 6418 6419 // Tagged data for ACTION_ACTIVITY_START. 6420 // FIELD: Caller app process record has overlay UI 6421 // CATEGORY: OTHER 6422 // OS: Q (will also ship in PQ1A) 6423 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535; 6424 6425 // Tagged data for ACTION_ACTIVITY_START. 6426 // FIELD: Caller app process record pending UI clean 6427 // CATEGORY: OTHER 6428 // OS: Q (will also ship in PQ1A) 6429 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536; 6430 6431 // Tagged data for ACTION_ACTIVITY_START. 6432 // FIELD: Millis since caller app's process record last interaction event 6433 // CATEGORY: OTHER 6434 // OS: Q (will also ship in PQ1A) 6435 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537; 6436 6437 // Tagged data for ACTION_ACTIVITY_START. 6438 // FIELD: Millis since caller app's process record fg interaction 6439 // CATEGORY: OTHER 6440 // OS: Q (will also ship in PQ1A) 6441 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538; 6442 6443 // Tagged data for ACTION_ACTIVITY_START. 6444 // FIELD: Millis since caller app's process record last became unimportant 6445 // CATEGORY: OTHER 6446 // OS: Q (will also ship in PQ1A) 6447 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539; 6448 6449 // Tagged data for ACTION_ACTIVITY_START. 6450 // FIELD: Activity record launch mode 6451 // CATEGORY: OTHER 6452 // OS: Q (will also ship in PQ1A) 6453 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540; 6454 6455 // Tagged data for ACTION_ACTIVITY_START. 6456 // FIELD: Activity record target activity 6457 // CATEGORY: OTHER 6458 // OS: Q (will also ship in PQ1A) 6459 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541; 6460 6461 // Tagged data for ACTION_ACTIVITY_START. 6462 // FIELD: Activity record flags 6463 // CATEGORY: OTHER 6464 // OS: Q (will also ship in PQ1A) 6465 FIELD_ACTIVITY_RECORD_FLAGS = 1542; 6466 6467 // Tagged data for ACTION_ACTIVITY_START. 6468 // FIELD: Activity record real activity 6469 // CATEGORY: OTHER 6470 // OS: Q (will also ship in PQ1A) 6471 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543; 6472 6473 // Tagged data for ACTION_ACTIVITY_START. 6474 // FIELD: Activity record short component name 6475 // CATEGORY: OTHER 6476 // OS: Q (will also ship in PQ1A) 6477 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544; 6478 6479 // Tagged data for ACTION_ACTIVITY_START. 6480 // FIELD: Activity record process name 6481 // CATEGORY: OTHER 6482 // OS: Q (will also ship in PQ1A) 6483 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545; 6484 6485 // Tagged data for ACTION_ACTIVITY_START. 6486 // FIELD: Activity record is fullscreen 6487 // CATEGORY: OTHER 6488 // OS: Q (will also ship in PQ1A) 6489 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546; 6490 6491 // Tagged data for ACTION_ACTIVITY_START. 6492 // FIELD: Activity record is no display 6493 // CATEGORY: OTHER 6494 // OS: Q (will also ship in PQ1A) 6495 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547; 6496 6497 // Tagged data for ACTION_ACTIVITY_START. 6498 // FIELD: Millis since activity was last visible 6499 // CATEGORY: OTHER 6500 // OS: Q (will also ship in PQ1A) 6501 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548; 6502 6503 // Tagged data for ACTION_ACTIVITY_START. 6504 // FIELD: Activity record's resultTo packageName 6505 // CATEGORY: OTHER 6506 // OS: Q (will also ship in PQ1A) 6507 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549; 6508 6509 // Tagged data for ACTION_ACTIVITY_START. 6510 // FIELD: Activity record's resultTo shortComponentName 6511 // CATEGORY: OTHER 6512 // OS: Q (will also ship in PQ1A) 6513 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550; 6514 6515 // Tagged data for ACTION_ACTIVITY_START. 6516 // FIELD: Activity record is visible 6517 // CATEGORY: OTHER 6518 // OS: Q (will also ship in PQ1A) 6519 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551; 6520 6521 // Tagged data for ACTION_ACTIVITY_START. 6522 // FIELD: Activity record is visible ignoring keyguard 6523 // CATEGORY: OTHER 6524 // OS: Q (will also ship in PQ1A) 6525 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552; 6526 6527 // Tagged data for ACTION_ACTIVITY_START. 6528 // FIELD: Millis since activity's last launch 6529 // CATEGORY: OTHER 6530 // OS: Q (will also ship in PQ1A) 6531 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553; 6532 6533 // OPEN: Settings > Add face 6534 // OS: Q 6535 FACE_ENROLL_PREVIEW = 1554; 6536 6537 // Field used to indicate whether a save request was used to update existing user data. 6538 FIELD_AUTOFILL_UPDATE = 1555; 6539 6540 // OPEN: Settings > Network & Internet > Wi-Fi > Add network 6541 // CATEGORY: SETTINGS 6542 // OS: Q 6543 SETTINGS_WIFI_ADD_NETWORK = 1556; 6544 6545 // OPEN: Settings > System > Input & Gesture > Reach up gesture 6546 // OS: Q 6547 SETTINGS_GESTURE_WAKE_LOCK_SCREEN = 1557; 6548 6549 // DEPRECATED: The metrics for emergency dialer has been revised. 6550 // OPEN: Emergency dialer opened 6551 // CLOSE: Emergency dialer closed 6552 // SUBTYPE: The entry type that user opened emergency dialer 6553 // CATEGORY: EMERGENCY_DIALER 6554 // OS: Q 6555 EMERGENCY_DIALER = 1558 [deprecated=true]; 6556 6557 // DEPRECATED: The metrics for emergency dialer has been revised. 6558 // FIELD: The screen is currently locked 6559 // CATEGORY: EMERGENCY_DIALER 6560 // OS: Q 6561 FIELD_EMERGENCY_DIALER_IS_SCREEN_LOCKED = 1559 [deprecated=true]; 6562 6563 // DEPRECATED: The metrics for emergency dialer has been revised. 6564 // FIELD: Bit flag indicating the actions performed by user 6565 // CATEGORY: EMERGENCY_DIALER 6566 // OS: Q 6567 FIELD_EMERGENCY_DIALER_USER_ACTIONS = 1560 [deprecated=true]; 6568 6569 // DEPRECATED: The metrics for emergency dialer has been revised. 6570 // FIELD: The duration user stayed at emergency dialer 6571 // CATEGORY: EMERGENCY_DIALER 6572 // OS: Q 6573 FIELD_EMERGENCY_DIALER_DURATION_MS = 1561 [deprecated=true]; 6574 6575 // DEPRECATED: The metrics for emergency dialer has been revised. 6576 // ACTION: Making call via emergency dialer 6577 // SUBTYPE: The UI that user made phone call 6578 // CATEGORY: EMERGENCY_DIALER 6579 // OS: Q 6580 EMERGENCY_DIALER_MAKE_CALL = 1562 [deprecated=true]; 6581 6582 // FIELD: The phone number type of a call user made 6583 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2 6584 // OS: Q 6585 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_TYPE = 1563; 6586 6587 // DEPRECATED: The metrics for emergency dialer has been revised. 6588 // FIELD: There is a shortcut for the phone number 6589 // CATEGORY: EMERGENCY_DIALER 6590 // OS: Q 6591 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_HAS_SHORTCUT = 1564 [deprecated=true]; 6592 6593 // DEPRECATED: The metrics for emergency dialer has been revised. 6594 // FIELD: The phone is in pocket while using emergency dialer 6595 // CATEGORY: EMERGENCY_DIALER 6596 // OS: Q 6597 FIELD_EMERGENCY_DIALER_IN_POCKET = 1565 [deprecated=true]; 6598 6599 // DEPRECATED: The metrics for emergency dialer has been revised. 6600 // ACTION: The second tap on emergency shortcut to make a phone call 6601 // CATEGORY: EMERGENCY_DIALER 6602 // OS: Q 6603 EMERGENCY_DIALER_SHORTCUT_CONFIRM_TAP = 1566 [deprecated=true]; 6604 6605 // DEPRECATED: The metrics for emergency dialer has been revised. 6606 // FIELD: The time in milliseconds of second tap on shortcut since first tap 6607 // CATEGORY: EMERGENCY_DIALER 6608 // OS: Q 6609 FIELD_EMERGENCY_DIALER_SHORTCUT_TAPS_INTERVAL = 1567 [deprecated=true]; 6610 6611 // OPEN: Power menu is opened 6612 // CATEGORY: GLOBAL_SYSTEM_UI 6613 // OS: Q 6614 POWER_MENU = 1568; 6615 6616 // DEPRECATED: The metrics for emergency dialer has been revised. 6617 // ACTION: User tapped emergency dialer icon in the power menu. 6618 // CATEGORY: GLOBAL_SYSTEM_UI 6619 // OS: Q 6620 ACTION_EMERGENCY_DIALER_FROM_POWER_MENU = 1569 [deprecated=true]; 6621 6622 // OPEN: Settings > System > Input & Gesture > Wake screen 6623 // OS: Q 6624 SETTINGS_GESTURE_WAKE_SCREEN = 1570; 6625 6626 // OPEN: Settings > Network & internet > Mobile network 6627 // CATEGORY: SETTINGS 6628 // OS: Q 6629 MOBILE_NETWORK = 1571; 6630 6631 // Tag of a field for the length of a text 6632 FIELD_AUTOFILL_TEXT_LEN = 1572; 6633 6634 // Action: the notification assistant is changing a notification 6635 // OS: Q 6636 NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573; 6637 6638 // Subtype: The people attached to a notification was changed 6639 ADJUSTMENT_KEY_PEOPLE = 1574; 6640 6641 // Subtype: The snooze options attached to a notification was changed 6642 ADJUSTMENT_KEY_SNOOZE_CRITERIA = 1575; 6643 6644 // Subtype: The group of a notification was changed 6645 ADJUSTMENT_KEY_GROUP_KEY = 1576; 6646 6647 // Subtype: The user sentiment of a notification was changed 6648 ADJUSTMENT_KEY_USER_SENTIMENT = 1577; 6649 6650 // Subtype: New actions have been added to a notification 6651 ADJUSTMENT_KEY_SMART_ACTIONS = 1578; 6652 6653 // Subtype: New smart replies have been added to a notification 6654 ADJUSTMENT_KEY_SMART_REPLIES = 1579; 6655 6656 // Subtype: The importance of a notification has been changed 6657 ADJUSTMENT_KEY_IMPORTANCE = 1580; 6658 6659 // OPEN: Settings > Network & internet > Mobile network > Choose network 6660 // CATEGORY: SETTINGS 6661 // OS: Q 6662 MOBILE_NETWORK_SELECT = 1581; 6663 6664 // OPEN: Settings > Network & internet > Mobile network > Mobile Data > Dialog 6665 // CATEGORY: SETTINGS 6666 // OS: Q 6667 MOBILE_DATA_DIALOG = 1582; 6668 6669 // OPEN: Settings > Network & internet > Mobile network > Data roaming > Dialog 6670 // CATEGORY: SETTINGS 6671 // OS: Q 6672 MOBILE_ROAMING_DIALOG = 1583; 6673 6674 // OPEN: Settings > Display > Lock screen display > On lock screen 6675 // CATEGORY: SETTINGS 6676 // OS: Q 6677 LOCK_SCREEN_NOTIFICATION_CONTENT = 1584; 6678 6679 // ConfirmDeviceCredentials > BiometricPrompt 6680 // CATEGORY: SETTINGS 6681 // OS: Q 6682 BIOMETRIC_FRAGMENT = 1585; 6683 6684 // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent) 6685 // CATEGORY: SETTINGS 6686 // OS: Q 6687 BIOMETRIC_ENROLL_ACTIVITY = 1586; 6688 6689 // OPEN: Settings > Privacy 6690 // CATEGORY: SETTINGS 6691 // OS: Q 6692 TOP_LEVEL_PRIVACY = 1587; 6693 6694 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions > 6695 // Allow apps to override 6696 // CATEGORY: SETTINGS 6697 // OS: Q 6698 NOTIFICATION_ZEN_MODE_OVERRIDING_APPS = 1588; 6699 6700 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions > 6701 // Allow apps to override > Choose app 6702 // CATEGORY: SETTINGS 6703 // OS: Q 6704 NOTIFICATION_ZEN_MODE_OVERRIDING_APP = 1589; 6705 6706 // ACTION: User sent a direct reply 6707 // PACKAGE: App that posted the notification 6708 // CATEGORY: NOTIFICATION 6709 // OS: Q 6710 NOTIFICATION_DIRECT_REPLY_ACTION = 1590; 6711 6712 // OPEN: Settings > Developer options > Disable > Info dialog 6713 // CATEGORY: SETTINGS 6714 // OS: Q 6715 DIALOG_DISABLE_DEVELOPMENT_OPTIONS = 1591; 6716 6717 // Tag for an ACTION: QS -> Tile click / Secondary click / long press 6718 // indicating the StatusBarState when menu was pulled down 6719 // CATEGORY: QUICK_SETTINGS 6720 // OS: Q 6721 FIELD_STATUS_BAR_STATE = 1592; 6722 6723 // Tag for an ACTION: QS -> Tile click / Secondary click / long press 6724 // indicating whether current state is full QS 6725 // CATEGORY: QUICK_SETTINGS 6726 // OS: Q 6727 FIELD_IS_FULL_QS = 1593; 6728 6729 // ACTION: Display folding state was changed 6730 // CATEGORY: OTHER 6731 // SUBTYPE: 1 if display is folded, 0 if not. 6732 // OS: Q 6733 ACTION_DISPLAY_FOLD = 1594; 6734 6735 // OPEN: WifiDppConfiguratorActivity (android.settings.WIFI_DPP_CONFIGURATOR_XXX action intents) 6736 // CATEGORY: SETTINGS 6737 // OS: Q 6738 SETTINGS_WIFI_DPP_CONFIGURATOR = 1595; 6739 6740 // OPEN: WifiDppEnrolleeActivity (android.settings.WIFI_DPP_ENROLLEE_XXX action intents) 6741 // CATEGORY: SETTINGS 6742 // OS: Q 6743 SETTINGS_WIFI_DPP_ENROLLEE = 1596; 6744 6745 // OPEN: Settings > Apps & Notifications -> Special app access -> Financial Apps Sms Access 6746 // CATEGORY: SETTINGS 6747 // OS: Q 6748 SETTINGS_FINANCIAL_APPS_SMS_ACCESS = 1597; 6749 6750 // OPEN: QS Sensor Privacy Mode tile shown 6751 // ACTION: QS Sensor Privacy Mode tile tapped 6752 // SUBTYPE: 0 is off, 1 is on 6753 // CATEGORY: QUICK_SETTINGS 6754 // OS: Q 6755 QS_SENSOR_PRIVACY = 1598; 6756 6757 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart actions. 6758 // OS: Q 6759 NOTIFICATION_SMART_ACTION_COUNT = 1599; 6760 6761 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION. 6762 // Whether the notification has notification-assistant generated 6763 // actions/replies. 6764 // OS: Q 6765 NOTIFICATION_SMART_SUGGESTION_ASSISTANT_GENERATED = 1600; 6766 6767 // Tagged data for NOTIFICATION_ITEM_ACTION. Whether the action is a smart 6768 // action. 6769 // OS: Q 6770 NOTIFICATION_ACTION_IS_SMART = 1601; 6771 6772 // FIELD: true if the associated ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* allows/blocks 6773 // the effect/sound when DND is on. false if set to disallow/show. 6774 // OS: Q 6775 FIELD_ZEN_TOGGLE_EXCEPTION = 1602; 6776 6777 // FIELD: rule id an ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* is associated with 6778 // OS: Q 6779 FIELD_ZEN_RULE_ID = 1603; 6780 6781 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6782 // > Do Not Disturb behavior 6783 // CATEGORY: SETTINGS 6784 // OS: Q 6785 ZEN_CUSTOM_RULE_SETTINGS = 1604; 6786 6787 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6788 // > Do Not Disturb behavior > Custom 6789 // CATEGORY: SETTINGS 6790 // OS: Q 6791 ZEN_CUSTOM_RULE_SOUND_SETTINGS = 1605; 6792 6793 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6794 // > Do Not Disturb behavior > Use default Do Not Disturb behavior 6795 // CATEGORY: SETTINGS 6796 // OS: Q 6797 ZEN_CUSTOM_RULE_DEFAULT_SETTINGS = 1606; 6798 6799 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6800 // > Do Not Disturb behavior > Custom 6801 // CATEGORY: SETTINGS 6802 // OS: Q 6803 ZEN_CUSTOM_RULE_CUSTOM_SETTINGS = 1607; 6804 6805 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6806 // > Do Not Disturb behavior > Use default Do Not Disturb behavior 6807 // > Notification restriction 6808 // CATEGORY: SETTINGS 6809 // OS: Q 6810 ZEN_CUSTOM_RULE_NOTIFICATION_RESTRICTIONS = 1608; 6811 6812 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6813 // > Do Not Disturb behavior > Use default Do Not Disturb behavior 6814 // > Notification restriction > Custom 6815 // CATEGORY: SETTINGS 6816 // OS: Q 6817 ZEN_CUSTOM_RULE_VIS_EFFECTS = 1609; 6818 6819 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6820 // > Do Not Disturb behavior > Use default Do Not Disturb behavior 6821 // > Notification restriction > Custom > Allow messages 6822 // CATEGORY: SETTINGS 6823 // OS: Q 6824 ZEN_CUSTOM_RULE_MESSAGES = 1610; 6825 6826 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule) 6827 // > Do Not Disturb behavior > Use default Do Not Disturb behavior 6828 // > Notification restriction > Custom > Allow calls 6829 // CATEGORY: SETTINGS 6830 // OS: Q 6831 ZEN_CUSTOM_RULE_CALLS = 1611; 6832 6833 // OPEN: Settings > Sound > Do Not Disturb > Click footer link if custom settings applied 6834 // CATEGORY: SETTINGS 6835 // OS: Q 6836 ZEN_CUSTOM_SETTINGS_DIALOG = 1612; 6837 6838 // OPEN: Settings > Developer Options > Game Driver Preferences 6839 // CATEGORY: SETTINGS 6840 // OS: Q 6841 SETTINGS_GAME_DRIVER_DASHBOARD = 1613; 6842 6843 // CATEGORY: The category for all actions relating to language detection logging. 6844 // OS: Q 6845 LANGUAGE_DETECTION = 1614; 6846 6847 // CATEGORY: The category for all actions relating to conversation actions logging. 6848 // OS: Q 6849 CONVERSATION_ACTIONS = 1615; 6850 6851 // ACTION: Actions from a text classifier are shown to user. 6852 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6853 // OS: Q 6854 ACTION_TEXT_CLASSIFIER_ACTIONS_SHOWN = 1616; 6855 6856 // FIELD: Event time of a text classifier event in unix timestamp. 6857 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6858 // OS: Q 6859 FIELD_TEXT_CLASSIFIER_EVENT_TIME = 1617; 6860 6861 // ACTION: Users compose their own replies instead of using suggested ones. 6862 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6863 // OS: Q 6864 ACTION_TEXT_CLASSIFIER_MANUAL_REPLY = 1618; 6865 6866 // ACTION: Text classifier generates an action. 6867 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6868 // OS: Q 6869 ACTION_TEXT_CLASSIFIER_ACTIONS_GENERATED = 1619; 6870 6871 // OPEN: Settings > Accessibility > Vibration > Ring vibration 6872 // CATEGORY: SETTINGS 6873 // OS: Q 6874 ACCESSIBILITY_VIBRATION_RING = 1620; 6875 6876 // ACTION: Notification blocking helper view, which helps the user to block 6877 // application or channel from showing notifications. 6878 // SUBTYPE: NotificationBlockingHelper enum. 6879 // CATEGORY: NOTIFICATION 6880 // OS: Q 6881 NOTIFICATION_BLOCKING_HELPER = 1621; 6882 6883 // ACTION: Tap & Pay -> Default Application Setting -> Use Forground 6884 // OS: Q 6885 ACTION_NFC_PAYMENT_FOREGROUND_SETTING = 1622; 6886 6887 // ACTION: Tap & Pay -> Default Application Setting -> Use Default 6888 // OS: Q 6889 ACTION_NFC_PAYMENT_ALWAYS_SETTING = 1623; 6890 6891 // OPEN: Settings > System > Input & Gesture > Skip song gesture 6892 // OS: Q 6893 SETTINGS_GESTURE_SKIP_SONG = 1624; 6894 6895 // OPEN: Settings > System > Input & Gesture > Silence gesture 6896 // OS: Q 6897 SETTINGS_GESTURE_SILENCE = 1625; 6898 6899 // OPEN: Settings > System > Input & Gesture > Tap screen gesture 6900 // OS: Q 6901 SETTINGS_GESTURE_TAP_SCREEN = 1626; 6902 6903 // OPEN: Settings > Network & internet > Click Mobile network to land on a page with a list of 6904 // SIM/eSIM subscriptions. 6905 // CATEGORY: SETTINGS 6906 // OS: Q 6907 MOBILE_NETWORK_LIST = 1627; 6908 6909 // OPEN: Settings > Display > Adaptive sleep 6910 // OS: Q 6911 SETTINGS_ADAPTIVE_SLEEP = 1628; 6912 6913 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION. 6914 // The UI location of the notification containing the smart suggestions. 6915 // This is a NotificationLocation object (see the NotificationLocation 6916 // enum). 6917 // OS: Q 6918 NOTIFICATION_LOCATION = 1629; 6919 6920 // The autofill system made request to the system-provided augmented autofill service. 6921 // OS: Q 6922 // Package: Package of app that is autofilled 6923 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 6924 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the 6925 // request 6926 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric. 6927 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode. 6928 AUTOFILL_AUGMENTED_REQUEST = 1630; 6929 6930 // Tag of a field for the number of augmented autofill requests in a session 6931 // OS: Q 6932 FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS = 1631; 6933 6934 // OPEN: Settings > System > Aware 6935 // OS: Q 6936 SETTINGS_AWARE = 1632; 6937 6938 // OPEN: Settings > System > Aware > Disable > Dialog 6939 // OS: Q 6940 DIALOG_AWARE_DISABLE = 1633; 6941 6942 // FIELD: Session ID of TextClassifierEvent. 6943 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6944 // OS: Q 6945 FIELD_TEXT_CLASSIFIER_SESSION_ID = 1634; 6946 6947 // FIELD: First entity type. 6948 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6949 // OS: Q 6950 FIELD_TEXT_CLASSIFIER_FIRST_ENTITY_TYPE = 1635; 6951 // FIELD: Second entity type. 6952 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6953 // OS: Q 6954 FIELD_TEXT_CLASSIFIER_SECOND_ENTITY_TYPE = 1636; 6955 6956 // FIELD: Third entity type. 6957 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6958 // OS: Q 6959 FIELD_TEXT_CLASSIFIER_THIRD_ENTITY_TYPE = 1637; 6960 6961 // FIELD: Score of the suggestion. 6962 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6963 // OS: Q 6964 FIELD_TEXT_CLASSIFIER_SCORE = 1638; 6965 6966 // FIELD: widget type, e.g: notification, textview 6967 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6968 // OS: Q 6969 FIELD_TEXT_CLASSIFIER_WIDGET_TYPE = 1639; 6970 6971 // FIELD: version of the widget. 6972 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS 6973 // OS: Q 6974 FIELD_TEXT_CLASSIFIER_WIDGET_VERSION = 1640; 6975 6976 // Tagged data for NOTIFICATION_ITEM. One of the CATEGORY String constants from 6977 // https://developer.android.com/reference/android/app/Notification . 6978 // OS: Q 6979 // CATEGORY: NOTIFICATION 6980 FIELD_NOTIFICATION_CATEGORY = 1641; 6981 6982 // OPEN: Settings > Settings > Network & internet > Click Mobile network to land on page with 6983 // details for a SIM/eSIM mobile network > Click edit icon to bring up a rename dialog. 6984 // OS: Q 6985 MOBILE_NETWORK_RENAME_DIALOG = 1642; 6986 6987 // ACTION: Settings > Search Bar > Avatar 6988 // CATEGORY: SETTINGS 6989 // OS: Q 6990 ACTION_CLICK_ACCOUNT_AVATAR = 1643; 6991 6992 // OPEN: Set new password (action intents android.app.action.SET_NEW_PASSWORD or 6993 // android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD) 6994 // CATEGORY: SETTINGS 6995 // OS: Q 6996 SET_NEW_PASSWORD_ACTIVITY = 1644; 6997 6998 // ACTION: Set new password (action intent android.app.action.SET_NEW_PASSWORD) 6999 // CATEGORY: SETTINGS 7000 // OS: Q 7001 ACTION_SET_NEW_PASSWORD = 1645; 7002 7003 // ACTION: Set new password (action intent android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD) 7004 // CATEGORY: SETTINGS 7005 // OS: Q 7006 ACTION_SET_NEW_PARENT_PROFILE_PASSWORD = 1646; 7007 7008 // Tagged data for SMART_REPLY_VISIBLE and SMART_REPLY_ACTION. 7009 // Whether the smart reply was / is to be sent via direct reply because 7010 // getEditChoicesBeforeSending was enabled. 7011 // OS: Q 7012 NOTIFICATION_SMART_REPLY_EDIT_BEFORE_SENDING = 1647; 7013 7014 // Tagged data for SMART_REPLY_ACTION. 7015 // Whether the smart reply was modified by the user via the direct reply field (implies that 7016 // getEditChoicesBeforeSending was enabled). 7017 // actions/replies. 7018 // OS: Q 7019 NOTIFICATION_SMART_REPLY_MODIFIED_BEFORE_SENDING = 1648; 7020 7021 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN 7022 // Field to add the mimetype for a ChooserActivity 7023 // OS:Q 7024 FIELD_SHARESHEET_MIMETYPE = 1649; 7025 7026 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN 7027 // Sharesheet direct targets are ready to show. 7028 // OS:Q 7029 ACTION_ACTIVITY_CHOOSER_SHOWN_DIRECT_TARGET = 1650; 7030 7031 // CATEGORY: ACTION_SHARESHEET_SCROLL 7032 // Sharesheet are either expanded, scrolling through them or compacted again. 7033 // OS:Q 7034 // Subtype 1 means collapsed, 0 expanded 7035 ACTION_SHARESHEET_COLLAPSED_CHANGED = 1651; 7036 7037 // ACTION: Share with screenshot extra 7038 // OS: Q 7039 ACTION_SHARE_WITH_PREVIEW = 1652; 7040 7041 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN 7042 // OS:Q 7043 // The time elapsed from triggering the share to displaying the app targets 7044 // formerly: histogram system_cost_for_smart_sharing 7045 FIELD_TIME_TO_APP_TARGETS = 1653; 7046 7047 // Open: Settings > Panel for Internet Connectivity 7048 PANEL_INTERNET_CONNECTIVITY = 1654; 7049 7050 // Open: Settings > Panel for Volume 7051 PANEL_VOLUME = 1655; 7052 7053 // Open: Settings > Panel for NFC 7054 PANEL_NFC = 1656; 7055 7056 // Open: Settings > Panel for Media Output 7057 PANEL_MEDIA_OUTPUT = 1657; 7058 7059 // ACTION: An interaction with a Slice or other component in the Panel. 7060 // CATEGORY: SETTINGS 7061 // OS: Q 7062 ACTION_PANEL_INTERACTION = 1658; 7063 7064 // ACTION: Change phone orientation 7065 // OS: Q 7066 // SUBTYPE is orientation defined in Configuration.class 7067 ACTION_PHONE_ORIENTATION_CHANGED = 1659; 7068 7069 // CATEGORY: ACTION_PHONE_ORIENTATION_CHANGED 7070 // OS: Q 7071 // Different display can have different orientations, so need to log display id 7072 FIELD_DISPLAY_ID = 1660; 7073 7074 // ACTION: Changing from work to parent profile or vice versa 7075 // OS: Q 7076 ACTION_SWITCH_SHARE_PROFILE = 1661; 7077 7078 // ACTION: Show Contextual homepage, log latency in loading cards 7079 ACTION_CONTEXTUAL_HOME_SHOW = 1662; 7080 7081 // ACTION: Contextual card displays 7082 ACTION_CONTEXTUAL_CARD_SHOW = 1663; 7083 7084 // ACTION: Contextual cards are eligible to be shown, but don't rank high 7085 ACTION_CONTEXTUAL_CARD_NOT_SHOW = 1664; 7086 7087 // ACTION: Settings > long press a card, and click dismiss 7088 // Contextual card is dismissed 7089 ACTION_CONTEXTUAL_CARD_DISMISS = 1665; 7090 7091 // ACTION: Settings > click a card 7092 // Contextual card is clicked 7093 ACTION_CONTEXTUAL_CARD_CLICK = 1666; 7094 7095 // Mapping: go/at-mapping 7096 PAGE_ATSSI = 1667; 7097 7098 PAGE_ATSII = 1668; 7099 7100 PAGE_ATUS = 1669; 7101 7102 PAGE_ATSSP = 1670; 7103 7104 PAGE_ATSAP = 1671; 7105 7106 PAGE_ATSCP = 1672; 7107 7108 PAGE_ATHNP = 1673; 7109 7110 ACTION_ATSG = 1674; 7111 7112 ACTION_ATPG = 1675; 7113 7114 ACTION_ATCLPB = 1676; 7115 7116 ACTION_ATCGIB = 1677; 7117 7118 ACTION_ATCPAB = 1678; 7119 7120 ACTION_ATCSAUC = 1679; 7121 7122 ACTION_ATCSCUC = 1680; 7123 7124 ACTION_ATCHNUC = 1681; 7125 7126 // OPEN: Accessibility detail settings (android.settings.ACCESSIBILITY_DETAILS_SETTINGS intent) 7127 ACCESSIBILITY_DETAILS_SETTINGS = 1682; 7128 7129 // Open: Settings will show the conditional when Grayscale mode is on 7130 SETTINGS_CONDITION_GRAYSCALE_MODE = 1683; 7131 7132 // ACTION: Individual contextual card loading time 7133 ACTION_CONTEXTUAL_CARD_LOAD = 1684; 7134 7135 //ACTION: Contextual card loading timeout 7136 ACTION_CONTEXTUAL_CARD_LOAD_TIMEOUT = 1685; 7137 7138 //ACTION: Log result for each card's eligibility check 7139 ACTION_CONTEXTUAL_CARD_ELIGIBILITY = 1686; 7140 7141 // Panel for Wifi 7142 PANEL_WIFI = 1687; 7143 7144 // Custom tag for NotificationItem. A NotificationImportanceExplanation. 7145 FIELD_NOTIFICATION_IMPORTANCE_EXPLANATION = 1688; 7146 7147 // Custom tag for NotificationItem. The initial "natural" importance. 7148 FIELD_NOTIFICATION_IMPORTANCE_INITIAL = 1689; 7149 7150 // Custom tag for NotificationItem. A NotificationImportanceExplanation. 7151 // The source of the "natural" importance, if it was overridden. 7152 FIELD_NOTIFICATION_IMPORTANCE_INITIAL_EXPLANATION = 1690; 7153 7154 // Custom tag for NotificationItem. The Notification Assistant's 7155 // override of importance. Logged separately only if it was 7156 // overridden by the system. 7157 FIELD_NOTIFICATION_IMPORTANCE_ASST = 1691; 7158 7159 // Open: Settings > Special App Access > Do not disturb control for app 7160 ZEN_ACCESS_DETAIL = 1692; 7161 7162 // OPEN: Settings > Face > Remove face 7163 // OS: Q 7164 DIALOG_FACE_REMOVE = 1693; 7165 7166 // FIELD - Detailed reason in screen wake. One of WAKE_REASON_* in PowerManager. 7167 // OS: Q 7168 FIELD_SCREEN_WAKE_REASON = 1694; 7169 7170 // FIELD - Detailed reason in screen sleep. One of GO_TO_SLEEP_REASON_* in PowerManager. 7171 // OS: Q 7172 FIELD_SCREEN_SLEEP_REASON = 1695; 7173 7174 // UPDATE: The screen changed policy 7175 // SUBTYPE: The applied policy. One of the DISPLAY_POLICY_* constants in 7176 // DisplayManagerInternal. 7177 // OS: Q 7178 DISPLAY_POLICY = 1696; 7179 7180 // Biometric authentication. 7181 // TYPE: SUCCESS, FAILURE or ERROR 7182 // SUBTYPE: 0 is fingerprint, 1 is face, 2 is iris and 3 is unknown. 7183 // OS: Q 7184 BIOMETRIC_AUTH = 1697; 7185 7186 // Settings > Display > Theme 7187 DARK_UI_SETTINGS = 1698; 7188 7189 // Settings > global bubble settings 7190 BUBBLE_SETTINGS = 1699; 7191 7192 // Settings > app > bubble settings 7193 APP_BUBBLE_SETTINGS = 1700; 7194 7195 // OPEN: Settings > System > Aware > Info dialog 7196 DIALOG_AWARE_STATUS = 1701; 7197 7198 // Open: Settings > app > bubble settings > confirmation dialog 7199 DIALOG_APP_BUBBLE_SETTINGS = 1702; 7200 7201 // ACTION: Display white balance setting enabled or disabled. 7202 // CATEGORY: SETTINGS 7203 // OS: Q 7204 ACTION_DISPLAY_WHITE_BALANCE_SETTING_CHANGED = 1703; 7205 7206 // Action: ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET 7207 // Direct share target hashed with rotating salt 7208 FIELD_HASHED_TARGET_NAME = 1704; 7209 7210 // Action: ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET 7211 // Salt generation for the above hashed direct share target 7212 FIELD_HASHED_TARGET_SALT_GEN = 1705; 7213 7214 // OPEN: QS dark theme tile shown 7215 // ACTION: QS dark theme tile tapped 7216 // SUBTYPE: 0 is off, 1 is on 7217 // CATEGORY: QUICK_SETTINGS 7218 // OS: Q 7219 QS_UI_MODE_NIGHT = 1706; 7220 7221 // OPEN: Settings > Pick SIM dialog 7222 // CATEGORY: SETTINGS 7223 // OS: Q 7224 DIALOG_SIM_LIST = 1707; 7225 7226 // OPEN: Settings > Pick SIM (that supports calling) dialog 7227 // CATEGORY: SETTINGS 7228 // OS: Q 7229 DIALOG_CALL_SIM_LIST = 1708; 7230 7231 // OPEN: Settings > Pick preferred SIM dialog 7232 // CATEGORY: SETTINGS 7233 // OS: Q 7234 DIALOG_PREFERRED_SIM_PICKER = 1709; 7235 7236 // ACTION: Share a Wi-Fi network by generating a QR code 7237 ACTION_SETTINGS_SHARE_WIFI_QR_CODE = 1710; 7238 7239 // ACTION: Connect to a Wi-Fi network by scanning a QR code 7240 ACTION_SETTINGS_ENROLL_WIFI_QR_CODE = 1711; 7241 7242 // ACTION: Share Wi-Fi hotspot by generating a QR code 7243 ACTION_SETTINGS_SHARE_WIFI_HOTSPOT_QR_CODE = 1712; 7244 7245 // OPEN: Settings > Network & internet > Mobile network > Delete sim 7246 DIALOG_DELETE_SIM_CONFIRMATION = 1713; 7247 7248 // OPEN: Settings > Network & internet > Mobile network > Delete sim > (answer yes to 7249 // confirmation) 7250 DIALOG_DELETE_SIM_PROGRESS = 1714; 7251 7252 // Settings > Apps and notifications > Notifications > Gentle notifications 7253 GENTLE_NOTIFICATIONS_SCREEN = 1715; 7254 7255 // Assistant 7256 // TYPE: OPEN, CLOSE or UPDATE. 7257 // For OPEN, the subtype is the innovation type for the assistant. 7258 // OS: Q 7259 ASSISTANT = 1716; 7260 7261 // ACTION: Published shortcuts in ShortcutManager changed 7262 // TYPE: All the SHORTCUTS_CHANGED_* values in ShortcutsChangesInfo 7263 // OS: Q 7264 ACTION_SHORTCUTS_CHANGED = 1717; 7265 7266 // ACTION: Direct share targets loaded via ShortcutManager 7267 // OS: Q 7268 ACTION_DIRECT_SHARE_TARGETS_LOADED_SHORTCUT_MANAGER = 1718; 7269 7270 // ACTION: Direct share targets loaded via ChooserService 7271 // OS: Q 7272 ACTION_DIRECT_SHARE_TARGETS_LOADED_CHOOSER_SERVICE = 1719; 7273 7274 // Field indicating that an autofill session was created just for augmented autofill purposes. 7275 // OS: Q 7276 // Value: 1 for true, absent when false 7277 FIELD_AUTOFILL_AUGMENTED_ONLY = 1720; 7278 7279 // The augmented autofill service set its whitelisted packages and activities. 7280 // OS: Q 7281 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the 7282 // request 7283 // Tag FIELD_AUTOFILL_NUMBER_PACKAGES: Number of whitelisted packages. 7284 // Tag FIELD_AUTOFILL_NUMBER_ACTIVITIES: Number of whitelisted activities. 7285 AUTOFILL_AUGMENTED_WHITELIST_REQUEST = 1721; 7286 7287 // Generic field used to indicate the number of packages in an Autofill metric (typically a 7288 // whitelist request). 7289 // OS: Q 7290 FIELD_AUTOFILL_NUMBER_PACKAGES = 1722; 7291 7292 // Generic field used to indicate the number of activities in an Autofill metric (typically a 7293 // whitelist request). 7294 // OS: Q 7295 FIELD_AUTOFILL_NUMBER_ACTIVITIES = 1723; 7296 7297 // Reports the result of a request made to the augmented autofill service 7298 // OS: Q 7299 // Type TYPE_UNKNOWN: if the type of response could not be determined 7300 // Type TYPE_SUCCESS: service called onSucess() passing null 7301 // Type TYPE_OPEN: service shown the UI 7302 // Type TYPE_CLOSE: service hid the UI 7303 // Type TYPE_ERROR: service timed out responding 7304 7305 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled. 7306 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the 7307 // request 7308 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric 7309 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to the service to respond, or -1 if the 7310 // type of response could not be determined 7311 AUTOFILL_AUGMENTED_RESPONSE = 1724; 7312 7313 // ACTION: Settings > Initialize Search bar > Verify Slice > Invalid data 7314 ACTION_VERIFY_SLICE_ERROR_INVALID_DATA = 1725; 7315 7316 // ACTION: Settings > Initialize Search bar > Verify Slice > Parsing error 7317 ACTION_VERIFY_SLICE_PARSING_ERROR = 1726; 7318 7319 // ACTION: Settings > Initialize Search bar > Verify Slice > Other exception 7320 ACTION_VERIFY_SLICE_OTHER_EXCEPTION = 1727; 7321 7322 // OPEN: Settings > System > Gestures > Global Actions Panel 7323 // CATEGORY: SETTINGS 7324 // OS: Q 7325 GLOBAL_ACTIONS_PANEL_SETTINGS = 1728; 7326 7327 // ACTION: Making call via emergency dialer (Ver.2) 7328 // SUBTYPE: The UI that user made phone call 7329 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2 7330 // OS: Q 7331 EMERGENCY_DIALER_MAKE_CALL_V2 = 1729; 7332 7333 // ACTION: Result of an emergency call 7334 // SUBTYPE: Is the call active, i.e. accepted by the remote 7335 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT 7336 // OS: Q 7337 EMERGENCY_DIALER_CALL_RESULT = 1730; 7338 7339 // FIELD: The entry point that the user launch emergency dialer from 7340 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2 7341 // OS: Q 7342 FIELD_EMERGENCY_DIALER_LAUNCH_FROM = 1731; 7343 7344 // FIELD: The reason why the traditional emergency dialer shows up 7345 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2 7346 // OS: Q 7347 FIELD_EMERGENCY_DIALER_UI_MODE_ERROR_CODE = 1732; 7348 7349 // FIELD: The device is currently locked 7350 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2 7351 // OS: Q 7352 FIELD_EMERGENCY_DIALER_IS_DEVICE_LOCKED = 1733; 7353 7354 // FIELD: The country ISO code of current network 7355 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2, EMERGENCY_DIALER_CALL_RESULT 7356 // OS: Q 7357 FIELD_EMERGENCY_DIALER_NETWORK_COUNTRY_ISO = 1734; 7358 7359 // FIELD: The mobile operator code (MNC) of current network 7360 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2, EMERGENCY_DIALER_CALL_RESULT 7361 // OS: Q 7362 FIELD_EMERGENCY_DIALER_NETWORK_OPERATOR = 1735; 7363 7364 // FIELD: Radio version of the device 7365 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2 7366 // OS: Q 7367 FIELD_EMERGENCY_DIALER_RADIO_VERSION = 1736; 7368 7369 // FIELD: The duration between the start of dialing and the call is active. 7370 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT 7371 // OS: Q 7372 FIELD_EMERGENCY_DIALER_RESPONSE_TIME = 1737; 7373 7374 // FIELD: The duration between the start of dialing and the call being disconnected. 7375 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT 7376 // OS: Q 7377 FIELD_EMERGENCY_DIALER_DISCONNECT_TIME = 1738; 7378 7379 // FIELD: The cause of a disconnected call. 7380 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT 7381 // OS: Q 7382 FIELD_EMERGENCY_DIALER_DISCONNECT_CAUSE = 1739; 7383 7384 // OPEN: Settings > Display > Dark Theme 7385 // CATEGORY: SETTINGS 7386 // OS: Q 7387 // Note: Only shows up on first time toggle 7388 DIALOG_DARK_UI_INFO = 1740; 7389 7390 // FIELD - Detailed reason in biometric authentication error. 7391 // One of the constant value in BiometricConstants.java file. 7392 // OS: Q 7393 FIELD_BIOMETRIC_AUTH_ERROR = 1741; 7394 7395 // Custom tag for NotificationItem. Hash of the NAS that made adjustments. 7396 FIELD_NOTIFICATION_ASSISTANT_SERVICE_HASH = 1742; 7397 7398 // Report interactions with seekbar on media notifications 7399 // OPEN: Seekbar is visible 7400 // CLOSE: Seekbar is not visible 7401 // DETAIL: Seekbar scrubber enabled / disabled 7402 // Subtype: 0 disabled, cannot seek; 1 enabled, can seek 7403 // UPDATE: Scrubber was moved by user 7404 // CATEGORY: NOTIFICATION 7405 MEDIA_NOTIFICATION_SEEKBAR = 1743; 7406 7407 // Custom tag for StatusBarNotification. Length of 7408 // Notification.extras[EXTRA_PEOPLE_LIST], set by addPerson(). 7409 FIELD_NOTIFICATION_PEOPLE = 1744; 7410 7411 // Custom tag for StatusBarNotification. The Java hashcode of 7412 // Notification.extras[EXTRA_TEMPLATE], which is a string like 7413 // android.app.Notification$MessagingStyle, set by setStyle(). 7414 FIELD_NOTIFICATION_STYLE = 1745; 7415 7416 // OPEN: Settings > About phone > Legal information > Google Play system update licenses 7417 // CATEGORY: SETTINGS 7418 // OS: Q 7419 MODULE_LICENSES_DASHBOARD = 1746; 7420 7421 // OPEN: Settings > System > Gestures > System navigation > Info icon 7422 // CATEGORY: SETTINGS 7423 // OS: Q 7424 // Note: Info icon is visible only when gesture navigation is not available and disabled 7425 SETTINGS_GESTURE_NAV_NOT_AVAILABLE_DLG = 1747; 7426 7427 // OPEN: Settings > System > Gestures > System navigation > Gear icon 7428 // CATEGORY: SETTINGS 7429 // OS: Q 7430 // Note: Gear icon is shown next to gesture navigation preference and opens sensitivity dialog 7431 SETTINGS_GESTURE_NAV_BACK_SENSITIVITY_DLG = 1748; 7432 7433 7434 7435 // ACTION: Chooser > User taps a system-provided target such as copy 7436 // SUBTYPE: Index of target 7437 // CATEGORY: GLOBAL_SYSTEM_UI 7438 // OS: Q - QPR1 7439 ACTION_ACTIVITY_CHOOSER_PICKED_SYSTEM_TARGET = 1749; 7440 7441 // OPEN: Settings > System > Aware > Aware Display 7442 // OS: Q 7443 SETTINGS_AWARE_DISPLAY = 1750; 7444 // ---- End Q Constants, all Q constants go above this line ---- 7445 // Add new aosp constants above this line. 7446 // END OF AOSP CONSTANTS 7447 } 7448} 7449