Send Intent
Overview
Section titled “Overview”Send an intent to start an activity on a connected device. Supports actions, data URIs, component targeting, string extras, and flags.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
action | string | Yes | — | Intent action (e.g., android.intent.action.VIEW) |
data | string | No | — | Intent data URI (e.g., https://example.com) |
component | string | No | — | Target component (e.g., com.example/.MainActivity) |
extras | object | No | — | String extras as key-value pairs |
flags | string[] | No | — | Intent flags (e.g., ['0x10000000']) |
deviceId | string | No | — | Target device serial |
Examples
Section titled “Examples”Open https://example.com on my device
Send intent with action android.settings.SETTINGS
Send intent VIEW with data tel:+1234567890
Send intent with extras key1=value1 to com.example.myapp
Related Tools
Section titled “Related Tools”- Send Broadcast — Send broadcast intents
- Test Deep Link — Simplified deep link testing