App decision

A decision block that start an app activity.

The fiber will pause until the activity has finished or the timeout expired. If you don’t want the fiber to pause, use the App start block instead.

Only some app activities are designed to return a meaningful result, those activities often perform a single task, like picking, inserting or deleting content.

An app activity is referred, either explicitly by its package and activity class (use the Pick app activity button), or implicitly by an action and data URI. To implicitly start the “main” activity, like the launcher does, specify only the package

What data and actions an activity support varies. Search for public documentation, or look at the app manifest for clues.

Note! If this block cause a SecurityException failure is likely because the activity isn’t exported (i.e. private), it’s been temporarily or permanently disabled, or it’s secured by a permission to prevent third-party apps from launching it.

Common extras

KeyConversion typeDescription
"android.intent.extra.HTML_TEXT"StringA HTML alternative to "android.intent.extra.TEXT"
"android.intent.extra.REFERRER"UriHTTP or package referrer
"android.intent.extra.STREAM"UriData stream
"android.intent.extra.SUBJECT"StringSubject of a message
"android.intent.extra.TEXT"CharSequenceA generic text
"android.intent.extra.TITLE"CharSequenceA generic title
"query"StringA search query

Input arguments

Output variables