19 lines
362 B
Markdown
19 lines
362 B
Markdown
# DeskClaw Android (APK)
|
|
|
|
This is a Capacitor wrapper around the DeskClaw web UI.
|
|
|
|
It produces an APK that bundles the UI for offline rendering. It does not embed the full Electron main-process features.
|
|
|
|
## Build (Debug APK)
|
|
|
|
```bash
|
|
cd mobile
|
|
pnpm run web:build
|
|
pnpm run web:sync
|
|
pnpm install
|
|
pnpm exec cap sync android
|
|
cd android
|
|
./gradlew assembleDebug
|
|
```
|
|
|