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