AndroidCtl is a local Android automation toolkit for developer and agent workflows. It provides a host CLI, a host daemon, shared Python contracts, and an Android device agent that can observe the current UI, expose stable element refs, run actions, wait for screen changes, and collect artifacts such as screenshots.
The usual loop is:
androidctl observe
androidctl tap n3
androidctl wait --until idle
androidctl observecontracts/: shared Python wire models and command catalog.androidctl/: public CLI, command parsing, daemon discovery, and XML output.androidctld/: host daemon, runtime state, command execution, and device RPC.android/: Kotlin Android device agent with a foreground RPC service and Accessibility service.
- Python 3.10.
- Android SDK platform tools, especially
adb. - An Android 11+ device or emulator with USB debugging enabled.
For agents that support skills, ask your agent to install the AndroidCtl skill:
Install this skill: https://github.com/Azure99/androidctl/tree/main/skills/androidctl
Install the released host tools with the single public distribution:
pip install androidctl
androidctl --helpThe androidctl distribution includes the CLI, host daemon, and shared Python
contracts. Do not install separate androidctld or androidctl-contracts
distributions.
Create a local Python environment and install AndroidCtl in editable mode:
conda create -p ./.conda python=3.10
./.conda/bin/python -m pip install -U pip
./.conda/bin/python -m pip install -e ".[dev]"
export PATH="$PWD/.conda/bin:$PATH"Check the CLI:
androidctl --version
androidctl --helpReleased Python packages include the Android agent APK used by setup. When
working from source and testing a locally built debug agent, build a debug APK
and pass it to setup with --apk:
(cd android && ./gradlew :app:assembleDebug)
androidctl setup --adb --apk android/app/build/outputs/apk/debug/app-debug.apkThe debug APK is created at:
android/app/build/outputs/apk/debug/app-debug.apkConnect a device with USB debugging enabled and confirm that ADB can see it:
adb devicesRun the onboarding helper:
androidctl setup --adbIf more than one device is connected, pass the ADB serial:
androidctl setup --adb --serial <adb-serial>Setup installs the Android agent, starts its foreground RPC server, provisions a device token, attempts to enable the AndroidCtl Accessibility service, and checks that the daemon can talk to the device. If Android blocks automatic Accessibility enablement, follow the manual instructions printed by the command and rerun setup.
Pair and connect from the CLI if you prefer Android wireless debugging:
androidctl adb-pair --pair <host:pair-port> --code <pairing-code>
androidctl adb-connect <host:connect-port>
androidctl setup --adb --serial <host:connect-port>Observe the current screen:
androidctl observeThe output is XML intended for scripts and agents. Interactive elements receive
refs such as n1, n2, and n3; use those refs in later commands.
Common commands:
androidctl list-apps
androidctl open app:com.android.settings
androidctl open https://example.com
androidctl tap n3
androidctl long-tap n3
androidctl focus n4
androidctl type n4 "hello from androidctl"
androidctl submit n4
androidctl scroll n8 down
androidctl back
androidctl home
androidctl recents
androidctl notifications
androidctl wait --until screen-change
androidctl wait --until gone --ref n3
androidctl wait --until text-present --text "Done"
androidctl wait --until app --app com.android.settings
androidctl screenshot
androidctl closeCommands use the current workspace by default. For a dedicated runtime state
directory, pass --workspace-root <path> or set ANDROIDCTL_WORKSPACE_ROOT.
Run the default verification suite from the repository root:
task test
task lint
task qualityUseful focused commands:
task androidctl:test
task androidctld:test
task contracts:test
task android:test
task format
task --listSource development additionally requires Conda, JDK 17 or newer for Android
Gradle builds, and task for repository shortcuts.
Process-level CLI checks are available through:
task test:extended