Persistent Foreground App

This feature makes an app package persistently shown on the foreground. Currently, it is supported in the Secured Zone, where after a user login, the persistent app will be shown based on a criteria, such as user group.

"persistedForegroundApp": {
        "intent": {
            "action": "android.intent.action.VIEW",
            "package": "com.bluefletch.ems.support",
            "data": "<data>",
            "flags": 1,
            "typeIntent": "a"
        },
        "criteria_OR": [
            {
                "field": "${session.groups}",
                "pattern": ".*Associates.*"
            }
        ]
    },

Last updated