DroidMind

by hyperb1iss
Verified

uninstall_app

Uninstall specified apps from Android devices using the device serial and package name. Optionally retain app data and cache directories for future use.

Instructions

Uninstall an app from the device.

Args: serial: Device serial number package: Package name to uninstall keep_data: Whether to keep app data and cache directories

Returns: Uninstallation result message

Input Schema

NameRequiredDescriptionDefault
keep_dataNo
packageYes
serialYes

Input Schema (JSON Schema)

{ "properties": { "keep_data": { "default": false, "title": "Keep Data", "type": "boolean" }, "package": { "title": "Package", "type": "string" }, "serial": { "title": "Serial", "type": "string" } }, "required": [ "serial", "package" ], "title": "uninstall_appArguments", "type": "object" }
ID: p03zdsi6ol