Configuring the Subscribe Feature
Configuring the Subscribe Feature
View content for :
Platform:

Configuring the Subscribe Feature

Subscribe and unsubscribe from departments using the GUI, ADB, an MDM, or a third-party app.
  • Provide a button using the
    SUBSCRIPTIONS
    action.
    <Button> <title>Subscribe</title> <action>SUBSCRIPTIONS</action> <value></value> <enabled>true</enabled> <confirm>false</confirm> <description></description> <icon></icon> <scale>CENTER_INSIDE</scale> </Button>
  • Send an intent using the
    wfc.voice.SUBSCRIBE
    action.
    1. Subscribe to departments. If any departments were previously selected, the new departments are added to the existing list. Multiple departments can be separated by a comma without space.
      $ adb shell am start -a wfc.voice.SUBSCRIBE --esa subscriptions "Food,Toys"
    2. Unsubscribe from all departments and subscribe to new departments. Only the new departments are selected.
      $ adb shell am start -a wfc.voice.SUBSCRIBE --esa subscriptions "Food" --ez clear true
    3. Unsubscribe from all departments.
      $ adb shell am start -a wfc.voice.SUBSCRIBE --ez clear true