Platforms overview
Android app
Support snapshot
- Role: companion node app (Android does not host the Gateway).
- Gateway required: yes (run it on macOS, Linux, or Windows via WSL2).
- Install: Google Play or
OpenClaw-Android.apkfrom a supported GitHub Release, Getting Started for the Gateway, then Pairing. - Gateway: Runbook + Configuration.
- Protocols: Gateway protocol (nodes + control plane).
- Settings → OpenClaw opens a dedicated Gateway settings assistant when the operator connection has
operator.adminand the Gateway supportsopenclaw.chat. Its setup conversation stays separate from ordinary Chat, redacts secret replies locally, and moves to Chat only after you tap Open Chat.
Its reply field switches to masked input for secret prompts. Tap it again if a prompt change closes the keyboard. Android sends sensitive replies without trimming them and clears unsent drafts when you leave this page or background the app.
New replies stay in view while you are at the end of the settings conversation. Scroll up to read earlier steps without being pulled away, then tap Jump to latest to resume following. Following also resumes if resizing the window makes the whole conversation visible. Restart, when offered after an error, opens a new conversation at its latest reply.
System control (launchd/systemd) lives on the Gateway host — see Gateway.
Simultaneous gateway sessions
Pair each Gateway once, then open Settings → Gateway. The checkmark marks the focused Gateway and each switch controls whether a non-focused Gateway's operator session stays connected. Enabled Gateways reconnect independently while the app is in the foreground, so switching focus does not tear down the others. The focused Gateway alone owns the Android node session and device capabilities; this prevents simultaneous Gateways from issuing camera, location, screen, or notification commands to the same phone. Android can suspend the secondary connections after the app leaves the foreground.
Wear OS companion
The Wear OS companion uses the paired Android phone's authenticated Gateway connection; the watch never receives or stores Gateway credentials. It can select agents and sessions, read bounded transcripts, send text or dictated replies, abort an active run, start realtime Talk inside the selected session, and connect or disconnect the paired phone's Gateway. It also offers local reply notifications, dark or light appearance, and optional automatic speech for replies. Agent and Gateway controls are capability-negotiated for staggered phone/watch updates. Realtime Talk streams microphone and playback audio over a temporary Wear OS Data Layer channel and stops when the selected phone, Gateway connection, or audio channel is lost.
Install outside Google Play
Regular final and correction GitHub Releases include a universal OpenClaw-Android.apk and OpenClaw-Android-SHA256SUMS.txt. The APK is built from the release tag, signed with the OpenClaw Android release key, and carries GitHub Actions provenance.
Choose a release that lists both assets, then download and verify that exact tag before sideloading:
release_tag=vYYYY.M.PATCHgh release download "$release_tag" \ --repo openclaw/openclaw \ --pattern OpenClaw-Android.apk \ --pattern OpenClaw-Android-SHA256SUMS.txtsha256sum --check OpenClaw-Android-SHA256SUMS.txtgh attestation verify OpenClaw-Android.apk \ --repo openclaw/openclaw \ --signer-workflow openclaw/openclaw/.github/workflows/android-release.yml \ --source-ref "refs/tags/${release_tag}" \ --deny-self-hosted-runnersMirror and control Android from a remote Mac
scrcpy mirrors an Android screen in a macOS window and forwards keyboard and pointer input through Android Debug Bridge (ADB). This is an operator-side workflow, separate from the OpenClaw node connection. It is useful when the Android device and the Mac are in different locations but share a private Tailscale network.
Before you begin
-
Install Tailscale on the Android device and the Mac, and connect both to the same tailnet.
-
On Android, enable Developer options and USB debugging. Android 16 places Wireless debugging under Settings > System > Developer options. See Android developer options.
-
Install scrcpy and ADB on the Mac:
bash brew install scrcpybrew install --cask android-platform-tools -
Keep the Android device available for the first connection. Android must approve each Mac's ADB key before that Mac can control the device.
Enable ADB over TCP
For the initial setup, connect the Android device by USB to a trusted computer and approve its debugging prompt. Then run:
adb devicesadb tcpip 5555You can now disconnect USB. If port 5555 stops listening after a device reboot or debugging reset,
repeat this local setup step. Android 11 and later can also establish the initial trust with
Wireless debugging > Pair device with pairing code and adb pair.
Allow only the controller Mac
Tailnets with restrictive grants must explicitly allow the controller Mac to reach TCP port 5555 on the Android device. Add a narrow rule to the tailnet policy, replacing the example addresses with the two devices' stable Tailscale IPs:
{ grants: [ { src: ["<remote-mac-tailnet-ip>"], dst: ["<android-tailnet-ip>"], ip: ["tcp:5555"], }, ],}See Tailscale grants for host aliases and other selectors. Do not grant this port to the public internet or expose it with Funnel: an authorized ADB client has broad control of the device.
Connect and start mirroring
On the remote Mac:
adb connect <android-tailnet-ip>:5555adb devicesscrcpy --serial <android-tailnet-ip>:5555The first adb connect from this Mac shows an authorization dialog on Android. Unlock the device,
confirm the key fingerprint, and select Always allow from this computer only when the Mac is
trusted. A successful adb devices entry ends in device; unauthorized means the on-device prompt
has not been approved.
Once the scrcpy window opens, use it directly or target it with a macOS screen-automation tool such as Peekaboo. scrcpy carries the display and input; Tailscale provides only the private network path.
Troubleshooting
Connection timed out: verify the tailnet grant for TCP 5555. A successfultailscale pingproves peer reachability, not that policy permits this TCP port. Test withnc -vz <android-tailnet-ip> 5555from the Mac.unauthorized: unlock Android and approve the remote Mac's ADB key, or remove the stale workstation under Wireless debugging > Paired devices and pair it again.Connection refused: reconnect locally and runadb tcpip 5555again.- More than one device listed: keep the explicit
--serial <android-tailnet-ip>:5555argument.
When finished, close scrcpy and disconnect ADB:
adb disconnect <android-tailnet-ip>:5555Connection runbook
Android node app ⇄ (mDNS/NSD + WebSocket) ⇄ Gateway
Android connects directly to the Gateway WebSocket and uses device pairing (role: node).
For Tailscale or public hosts, Android requires a secure endpoint:
- Preferred: Tailscale Serve / Funnel with
https://<magicdns>/wss://<magicdns> - Also supported: any other
wss://Gateway URL with a real TLS endpoint - Cleartext
ws://remains supported on private LAN addresses /.localhosts, pluslocalhost,127.0.0.1, and the Android emulator bridge (10.0.2.2); non-loopback setup automatically uses limited operator access
Prerequisites
- Gateway running on another machine (or reachable via SSH).
- Android device/emulator can reach the gateway WebSocket:
- Same LAN with mDNS/NSD, or
- Same Tailscale tailnet using Wide-Area Bonjour / unicast DNS-SD (see below), or
- Manual gateway host/port (fallback)
- Tailnet/public mobile pairing does not use raw tailnet IP
ws://endpoints. Use Tailscale Serve or anotherwss://URL instead. - The
openclawCLI available on the gateway machine (or via SSH), to approve pairing requests.
1. Start the Gateway
openclaw gateway --port 18789 --verboseConfirm in logs you see something like:
listening on ws://0.0.0.0:18789
For remote Android access over Tailscale, prefer Serve/Funnel instead of a raw tailnet bind:
openclaw gateway --tailscale serveThis gives Android a secure wss:// / https:// endpoint. A plain gateway.bind: "tailnet" setup is not enough for first-time remote Android pairing unless you also terminate TLS separately.
2. Verify discovery (optional)
From the gateway machine:
dns-sd -B _openclaw-gw._tcp local.More debugging notes: Bonjour.
If you also configured a wide-area discovery domain, compare against:
openclaw gateway discover --jsonThat shows local. plus the configured wide-area domain in one pass, using the resolved service endpoint instead of TXT-only hints.
Cross-network discovery via unicast DNS-SD
Android NSD/mDNS discovery does not cross networks. If the Android node and the gateway are on different networks but connected via Tailscale, use Wide-Area Bonjour / unicast DNS-SD instead. Discovery alone is not sufficient for tailnet/public Android pairing — the discovered route still needs a secure endpoint (wss:// or Tailscale Serve):
- Set up a DNS-SD zone (example
openclaw.internal.) on the gateway host and publish_openclaw-gw._tcprecords. - Configure Tailscale split DNS for your chosen domain pointing at that DNS server.
Details and example CoreDNS config: Bonjour.
3. Connect from Android
In the Android app:
- The app keeps its gateway connection alive via a foreground service (persistent notification).
- During first-run setup, choose Scan QR or setup code or Set up manually.
- After setup, open Settings → Gateway. Add Gateway lets you scan or paste a setup code, or connect to a discovered Gateway.
- If discovery is blocked, use Manual Gateway on that page: enter the host and port, select Connection security, and tap Save & Connect. Private LAN hosts support
ws://; for Tailscale/public hosts, use Secure (TLS) with awss:/// Tailscale Serve endpoint.
Gateway tokens, bootstrap tokens, passwords, and setup codes are masked and accept paste. The app requests password input with autocorrection disabled, but cannot guarantee how a third-party keyboard stores or learns from input.
After the first successful pairing, Android auto-reconnects on launch to the active paired gateway (best-effort for discovered gateways, which must be visible on the network).
Android retries temporary connection losses automatically. For a fresh attempt with the saved endpoint, open Settings → Gateway and tap Reconnect. Disconnect stops the connections and suppresses automatic reconnect for the current app session; it does not forget the pairing. Authentication or pairing errors can pause retries until you address the reported problem.
Official setup codes connect Android as a node and grant full Gateway operator
access by default over wss://. Plaintext non-loopback ws:// setup
automatically uses limited access for bearer-token safety. Settings → Gateway
shows Full or Limited access. For a limited connection, configure
wss:// or Tailscale Serve, generate a new full-access code in Control UI or
with openclaw qr, then scan or paste it on that page and reconnect. Operators
who want the reduced profile can select Limited access in Control UI or run
openclaw qr --limited.
Manage paired gateways
The app keeps a registry of every gateway it has paired with, so you can keep operator sessions connected and change focus without pairing again:
- Settings → Gateway lists paired gateways in the Gateways section, with a checkmark beside the focused one. Tap another entry to focus it; the other enabled operator sessions remain connected.
- Each switch controls whether that non-focused Gateway stays connected while the app is in the foreground. The focused Gateway remains enabled and owns the phone's node connection and device capabilities.
- Credentials, device tokens, TLS trust, chat history, and queued offline messages are stored per Gateway. Changing focus never mixes state between Gateways, and messages queued while offline are delivered only to the Gateway they were written for.
- Forget removes a gateway's registry entry together with its credentials, device tokens, TLS pin, and cached chats.
The Channels, Dreaming, Health logs, Skills, and Usage pages keep their last loaded data while refreshing. A failed first load shows an error rather than empty counts or default health values. When refreshes overlap, only the latest request updates the page's data, error, and progress. Disconnecting clears the displayed summaries.
Presence alive beacons
After the authenticated node session connects, and when the app moves to the background while the foreground service is still connected, Android calls node.event with event: "node.presence.alive". The gateway records this as lastSeenAtMs/lastSeenReason on the paired node/device metadata only after the authenticated node device identity is known.
The app counts the beacon as successfully recorded only when the gateway response includes handled: true. Older gateways may acknowledge node.event with { "ok": true }; that response is compatible but does not count as a durable last-seen update.
4. Approve pairing (CLI)
On the gateway machine:
openclaw devices listopenclaw devices approve <requestId>openclaw devices reject <requestId>Pairing details: Pairing.
Optional: if the Android node always connects from a tightly controlled subnet, you can opt in to first-time node auto-approval with explicit CIDRs or exact IPs:
{ gateway: { nodes: { pairing: { autoApproveCidrs: ["192.168.1.0/24"], }, }, },}This is disabled by default. It applies only to fresh role: node pairing with no requested scopes. Operator/browser pairing and any role, scope, metadata, or public-key change still require manual approval.
5. Verify the node is connected
openclaw nodes statusopenclaw gateway call node.list --params "{}"6. Chat + history
The draft has its own full-width row above the attachment and voice/send controls, so larger text and narrow screens do not squeeze it between buttons. The empty hint stays on one line; drafts show up to six lines and scroll when space is limited. The composer has narrower side gutters than the transcript, with readable draft text and 48dp action targets. Typography still follows system text scaling. Model and thinking controls sit together, opposite the microphone and primary action. The model name stays on one line and follows system text scaling; long names use a middle ellipsis to keep both ends visible. The full name remains in the model sheet and accessibility text. The thinking dial opens a menu without expanding the composer. Context usage is available in the model sheet and the model control's accessibility value, leaving more room for the model name in the toolbar. During Talk, the live waveform replaces the microphone and remains tappable to end Talk. If a run is also active, a separate, softly tinted Stop button stays at the trailing edge to abort that run.
Open Home from the sidebar's Pages menu to chat, or select an existing session from the sidebar:
- History:
chat.history(display-normalized — inline directive tags, plain-text tool-call XML payloads (<tool_call>,<function_call>,<tool_calls>,<function_calls>, and truncated variants), and leaked ASCII/full-width model control tokens are stripped; silent-token assistant rows such as exactNO_REPLY/no_replyare omitted; oversized rows can be replaced with placeholders) - Long replies: tap View all on a capped assistant reply to load the full formatted text inline. Attachments stay in the conversation, and message actions use the expanded text. Tap Show less or press Back to restore the preview; reopening reuses the loaded reply. Loading, retryable failures, unavailable messages, and required reconnects or Gateway updates appear in the message rather than an alert. Synthetic message-tool and commentary previews retain their existing display and actions but do not offer View all, because their copied transcript ID cannot retrieve that synthesized text. This also recognizes the older capped-preview format from released Gateways such as v2026.7.1-2. Android requests up to 1,000,000 characters per text field, matching the Gateway's default retrieval limit; oversized or still-capped results show The full message is too large to display. instead of an incomplete reply.
- Large code blocks scroll within a bounded viewport, with Start of code, End of code, and Copy code controls. Selection stays within the displayed text segment; Copy code copies the entire block. Reading within the code pauses automatic transcript following; Jump to latest in the chat header resumes it. The control appears only while newer content is below the visible history and never covers messages. The separate message Select text action opens a plain-text selection reader; long answers use bounded pages, and selection applies to the displayed page.
- Mermaid code blocks render as diagrams after the closing fence arrives or the reply finishes. Tap a diagram to open a full-screen view with pinch-to-zoom and panning. The small corner controls copy the source or open a menu to switch between diagram and source. Rendering works offline with bundled assets. Failed diagrams keep their readable source, and temporary failures offer retry. Other code block languages remain code.
- Session selection: while the app is running, each Gateway and agent remembers the last chat you explicitly selected. Returning to an agent checks an older chat directly if it is outside the recent page; temporary lookup failures show an error without forgetting that choice.
- Archiving the open session returns to the app's main chat only if that same session is still selected. Switching sessions, agents, or Gateways while the archive finishes preserves your newer selection. A successful archive also retires the archived chat's remembered selection even if its push notification is missed.
- New in the sidebar creates and selects a fresh chat from any page without clearing the previous session. The sidebar and chat header show progress during creation and initial loading, and duplicate New actions are disabled. History refreshes do not cancel creation; selecting another session, agent, or Gateway while it finishes preserves that newer selection.
- Offline history: cached transcripts update in the order live histories are accepted, so a delayed reconnect health check cannot restore an older snapshot. Switching sessions preserves queued cache updates for the session you left.
- Refresh chat in chat actions reloads history and rechecks Gateway health without clearing pending messages. A failed health check marks chat offline even if history still loads; refresh again once the Gateway recovers. History failures do not stop subsequent health checks.
- Send:
chat.send - Queued message controls: Delete removes the local queued copy, including when a reconnect refresh is still finishing. It does not undo a message already accepted by the Gateway; use Stop to cancel an active turn.
- Durable sending: every send (text, picked images, and voice notes) is journaled to a per-gateway on-device outbox before any network attempt, so app termination cannot lose submitted input. Sends queued while offline deliver in order on reconnect with stable idempotency keys, and a send is retired only after the turn is visible in canonical
chat.history— an acknowledgement alone is not treated as proof of delivery. Acknowledged reconnect sends show the same streaming progress as online sends; requests that never reach the socket queue remain queued for the next connection. Ambiguous outcomes (lost acknowledgement, app killed mid-send, gateway restart before the transcript write) surface as visible rows with explicit Retry/Delete instead of auto-resending. If refreshed history changes branches, earlier queued input keeps its text and attachments but requires explicit retry; input admitted after that history is displayed can send normally when reconnecting to the same branch. Slash commands never auto-replay across a reconnect; they park for explicit retry. The queue is bounded (50 messages and 48 MB of attachment bytes per gateway) and unsent rows expire after 48 hours. Composer drafts that were never submitted are not process-durable. - Image input works through the picker and Android Sharesheet. Assistant-generated images resolve through the paired Gateway connection, render inline with a full-screen preview, and retain only their small artifact references in the offline transcript cache. Downloads are capped at 12 MiB and decoded to bounded display bitmaps.
- Push updates (best-effort):
chat.subscribe->event:"chat" - Listen: long-press an assistant message and choose Listen to hear it; audio renders via gateway
tts.speakwith the configured TTS provider chain, and on-device system TTS is used when the gateway cannot render audio. Playback stops on session switch, new chat, app backgrounding, or chat close.
7. Camera
Camera commands (foreground only; permission-gated): camera.snap (jpg), camera.clip (mp4). See Camera node for parameters and CLI helpers.
8. Voice + expanded Android command surface
- Navigate through the sidebar's Pages menu. Voice input belongs to the Chat composer; there is no separate Voice tab.
- Tap the composer microphone for on-device speech recognition that inserts a transcript into the draft. Long-press the microphone to record a voice-note attachment. The UI reports unavailable recognition, missing permission, busy/network failures, and no-speech outcomes instead of silently dropping the attempt. If dictation is unavailable and a gateway is selected, Record voice note offers a new recording while keeping the draft. It does not recover speech from the failed dictation attempt or send anything automatically.
- Start continuous Talk from the Chat waveform. Dictation, voice-note recording, and Talk are mutually exclusive microphone paths.
- Talk Mode promotes the existing foreground service from
connectedDevicetoconnectedDevice|microphonebefore capture starts, then demotes it when Talk Mode stops. The node service declaresFOREGROUND_SERVICE_CONNECTED_DEVICEwithCHANGE_NETWORK_STATE; Android 14+ also requires theFOREGROUND_SERVICE_MICROPHONEdeclaration, theRECORD_AUDIOruntime grant, and the microphone service type at runtime. - By default, Android Talk uses native speech recognition, Gateway chat, and
talk.speakthrough the configured gateway Talk provider. It inherits the session's thinking setting. Local system TTS is used only whentalk.speakis unavailable. - Gateway config changes refresh Android's cached Talk settings on the next use, without reconnecting or interrupting an active capture.
- Android Talk uses realtime Gateway relay only when
talk.realtime.modeisrealtimeandtalk.realtime.transportisgateway-relay. - Enable Settings → Voice → Listen for wake words for foreground on-device
Voice Wake. Android advertises
voiceWakeonly when enabled, on-device recognition and microphone permission are available, and wake words are synchronized with the current Gateway. - Additional Android command families (availability depends on device, permissions, and user settings):
device.status,device.info,device.permissions,device.healthdevice.appsonly when Settings > Phone Capabilities > Installed Apps is enabled; it lists launcher-visible apps by default (passincludeNonLaunchablefor the full list).notifications.list,notifications.actions(see Notification forwarding below)photos.latestcontacts.search,contacts.addcalendar.events,calendar.addcallLog.searchsms.searchmotion.activity,motion.pedometer
9. Workspace files (read-only)
Open Work from the sidebar's Pages menu to find the Files card. It browses the active agent's workspace through the read-only agents.workspace.list / agents.workspace.get gateway RPCs: directory drill-down, text and image previews, and export through the Android share sheet. There are no write operations, and previews are size-capped by the gateway.
If the app cannot prepare a file or open the share sheet, it shows Could not share file and keeps the preview open so you can retry or go back.
Review command approvals
An operator connection with operator.admin, or a paired
operator.approvals connection explicitly targeted by the Gateway, can review
pending exec requests under Settings -> Approvals. The app loads the
Gateway's sanitized approval record before enabling its buttons, shows any
security warning and the exact decisions offered by that request, and submits
the approval ID and owner kind back to the Gateway.
Approval state is shared with the Control UI and supported chat surfaces. The first committed answer wins; Android displays that canonical result even when another surface answered first. If a resolve response is lost or the Gateway disconnects, the app keeps the action locked and reads the approval again before offering another decision.
Gateways that predate the unified approval methods fall back to the shipped exec-specific methods. Pending review still works, but retained terminal state and the richer cross-surface result require an updated Gateway.
Answer agent questions
Chat shows pending Gateway questions as native cards for operator connections
with operator.questions (or operator.admin). Cards support single- and
multi-select options, option descriptions, free-text Other answers, and an
expiry countdown. Reconnects reload pending questions from the Gateway. A card
locks when this device answers it, another surface answers it first, or the
question expires or is cancelled.
Secret answer fields mask typed or pasted values and request password input with autocorrection disabled. Android submits secret answers without trimming leading or trailing whitespace.
Assistant entrypoints
Android supports launching OpenClaw from the system assistant trigger (Google Assistant). Holding the home button (or another ACTION_ASSIST trigger) opens the app; saying "Hey Google, ask OpenClaw <prompt>" matches the app's declared App Actions query pattern and hands the prompt into the chat composer without auto-sending it.
This uses Android App Actions (shortcuts.xml capability) declared in the app manifest. No gateway-side configuration is needed — the assistant intent is handled entirely by the Android app.
Notification forwarding
Android can forward device notifications to the gateway as node.event items. This is configured on the device, in the app's Settings sheet — not in gateway/openclaw.json config.
| Setting | Description |
|---|---|
| Forward Notification Events | Master toggle. Off by default; requires Notification Listener Access to be granted first. |
| Package Filter | Allowlist (only listed package IDs forwarded) or Blocklist (default: all packages except listed IDs). OpenClaw's own package is always excluded in Blocklist mode to prevent forwarding loops. |
| Quiet Hours | Local HH:mm start/end window that suppresses forwarding. Disabled by default; defaults to 22:00-07:00 once enabled. |
| Max Events / Minute | Per-device rate limit on forwarded notifications. Default 20. |
| Route Session Key | Optional. Pins forwarded notification events into a specific session instead of the device's default notification route. |
WhatsApp, WhatsApp Business, Telegram, Telegram X, Discord, and Signal notifications are always excluded. Their messages are already owned by native OpenClaw channel sessions; forwarding the Android notification as a separate node event could route a reply through the wrong conversation.