You can send an intent (for example, android.intent.action.VIEW) to the app by the runApp command.
The JSON payload will look like this:
{
pkg: "app.package.id",
action: "intent.action",
data: "optional-data",
extra: {
extra1: value1,
extra2: value2
}
}
All arguments are optional. Extras can be string, integer, or boolean.
Example:
{
pkg: "com.android.chrome",
action: "android.intent.action.VIEW",
data: "https://h-mdm.com"
}
This intent will display the webpage https://h-mdm.com in the Chrome browser.