An action block that starts an app activity.
The fiber will proceed immediately without pause. If you want the fiber to pause until the activity has finished, use the App decision block instead.
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.
Information about common Intents.
Key | Conversion type | Description |
---|---|---|
"android.intent.extra.HTML_TEXT" | String | A HTML alternative to "android.intent.extra.TEXT" |
"android.intent.extra.REFERRER" | Uri | HTTP or package referrer |
"android.intent.extra.STREAM" | Uri | Data stream |
"android.intent.extra.SUBJECT" | String | Subject of a message |
"android.intent.extra.TEXT" | CharSequence | A generic text |
"android.intent.extra.TITLE" | CharSequence | A generic title |
"query" | String | A search query |