Select an intent from the menu: Custom enables you to write
your own custom intent.
action:// - Executes a SOTI MobiControl action. To change the device password,
use action://CHANGE_DEVICE_PASSWORD . To configure
WiFi, use
action://CONFIGURE_WIFI .
browser://
- Opens a webpage in the default browser using HTTP.
browsers:// - Opens a webpage in the default browser
using HTTPS.
dial:// - Opens the default
dialer with a specified number (for example,
dial://5555555555).
file:// - Opens
non-HTML files on the device using its default browser (for example,
file:///%sdcard%content/document.pdf).
http:// - Opens a webpage in the kiosk webview using
HTTP.
https:// - Opens a webpage in the kiosk webview
using HTTPS.
intentaction:// - Sends an intent with the given
action.
intent: - Sends an intent given a standard intent
URI (for example,
intent:#Intent;action=net.soti.mobicontrol.admin.PASSWORD_DIALOG;i.dialog_type=1;end .
See Intent at Android Developers
Reference for more information.
Launchalways:// - Launches application in a
completely fresh state. This was added to reflect legacy (pre-v10)
launch:// behavior. The launched application is
excluded from recents. See https://developer.android.com/reference/android/content/Intent#toUri(int) for more information.
launchalwayswithrecents:// - Depricated, use
launchwithrecents://instead.
launch:// Launches an application, maintaining the
state from the last time it was launched. In Android Plus, the
launcher application is excluded from Recents.
launchenablesystem:// - Tries to enable
com.sec.android.app.launcher. If successful, the same action as
launch:// is performed.
launchwithrecents:// - Launches an application,
maintaining the state from the last time it was launched. The launch
application appears in Recents and is not terminated if already in
Recents.
movie:// - Allows videos to be played on the
lockdown. Same as file://.
refresh:// - Refreshes the kiosk webview. This does
not need a scheme-specific part.
script:// - Executes a given SOTI MobiControl script file.
setlocale:// - Sets device locale. For example,
setlocale://en_us .
shared-device:// - Shows shared device activity used
for both login and logout of a shared device. See Sharing Devices for more information.
surf:// - Opens a webpage in the SOTI Surf secure browser. The SOTI Surf app must be installed on the device
and configured with a SOTI Surf profile
configuration.
nothing - Same as file:// but
rooted in the kiosk data folder. For example, foo
becomes file://%kioskdata%/foo .
everything else - Same as
intent:// . Is sent to the application that is
listening for the specified scheme. For example,
foo://#action=bar becomes
intent://foo://#action=bar .
|