For the complete documentation index, see llms.txt. This page is also available as Markdown.

Wi-Fi UI Settings Enable/Disable

Wi-Fi UI Settings Enable/Disable is a Launcher feature that enables displaying the Wi-Fi UI Settings.

Overview

A reliable Wi-Fi network connection is essential for accessing shared enterprise devices. Wi-Fi Settings UI Enable/Disable is a Launcher feature that helps manage Wi-Fi settings and configurations on mobile devices. It allows the Wi-Fi Settings UI to be displayed or hidden from users.

User Guide

  1. If this feature is enabled within the configuration, the Wi-Fi Settings UI will be displayed.

  2. To enable this feature, a new layout item properties of action within the Android settings must be invoked.

  3. If these values are coupled with improved icon processing, the Settings shortcut will be displayed.

Feature Configuration

To allow the settings UI to work, ensure that "wifiSettingsEnabled" is set to true, or else you will receive a message saying that settings are disabled.

"layouts" : {
    ...

    "ADMIN":[
      {
        "label" : "Wifi Settings",
        "action": "android.settings.WIFI_SETTINGS",
        "icon" : "com.android.settings",
        "wifiSettingsEnabled": true
      }
     ...
    ]
  },

Last updated