DroidMind

by hyperb1iss
Verified

start_intent

Launch app activities on Android devices by specifying package, activity, and optional extras. Enables precise app interaction and management through intent operations.

Instructions

Start an app activity using an intent.

Args: serial: Device serial number package: Package name (e.g., "com.android.settings") activity: Activity name (e.g., ".Settings") ctx: Context extras: Optional intent extras as key-value pairs

Returns: The result of the intent operation

Input Schema

NameRequiredDescriptionDefault
activityYes
extrasNo
packageYes
serialYes

Input Schema (JSON Schema)

{ "properties": { "activity": { "title": "Activity", "type": "string" }, "extras": { "anyOf": [ { "additionalProperties": { "type": "string" }, "type": "object" }, { "type": "null" } ], "default": null, "title": "Extras" }, "package": { "title": "Package", "type": "string" }, "serial": { "title": "Serial", "type": "string" } }, "required": [ "serial", "package", "activity" ], "title": "start_intentArguments", "type": "object" }
ID: p03zdsi6ol