feat(android): add capacitor wrapper project

This commit is contained in:
DeskClaw Bot
2026-04-21 16:15:22 +00:00
Unverified
parent 3075310961
commit 60432833f2
5 changed files with 105 additions and 0 deletions

18
mobile/README.md Normal file
View File

@@ -0,0 +1,18 @@
# 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
```