# dab - Droid Automation Box ๐ฆ๐ค
> All your automation tools in one box.
A fast, interactive command-line tool for automating and managing your Android device from your computer.
## Features
- ๐ **Open** installed apps
- ๐๏ธ **Uninstall** apps you don't need
- ๐งน **Clear** app data and cache
- ๐ **Force kill** stubborn apps
- ๐ฆ **Download APK** files
- ๐ **Show app info** (version, permissions, etc)
- ๐ค **Show device info** (model, Android version, etc)
- ๐ **Show network info** (IP, WiFi, etc)
- ๐ฉบ **Device Health Check** (battery, storage, RAM, network)
- ๐ถ **Enable ADB over Wi-Fi** (connect wirelessly to your device)
- ๐ **Switch ADB back to USB mode** (revert to cable connection)
- ๐ธ **Take screenshots**
- ๐ฅ **Record screen**
- ๐ **Searchable app selection** (find your app in a snap)
## Usage
Run the interactive UI:
```bash
dab
```
Or use direct commands:
```bash
# ๐ Open an app
dab open
# ๐๏ธ Uninstall an app
dab uninstall
# ๐งน Clear app data
dab clear
# ๐ Force kill an app
dab force-kill
# ๐ฆ Download APK (optionally specify output path)
dab download
dab download --output /path/to/save.apk
# ๐ Show app info
dab app-info
# ๐ค Show device info
dab device
# ๐ Show network info
dab network
# ๐ธ Take a screenshot
dab screenshot --output /path/to/screen.png
# ๐ฅ Record the screen
dab record --output /path/to/demo.mp4
# ๐ถ Enable ADB over Wi-Fi (no more cables!)
dab wifi
# ๐ Switch ADB back to USB mode
dab usb
# ๐ฉบ Device Health Check (battery, storage, RAM, network)
dab health
```
## Requirements
- [Rust](https://www.rust-lang.org/tools/install) (1.70+ recommended)
- [ADB (Android Debug Bridge)](https://developer.android.com/tools/adb) in your PATH
- An Android device or emulator with USB debugging enabled
## Installation ๐ฅ
### From Source
```bash
# Clone the repository
git clone https://github.com/cesarferreira/apm.git
cd apm
# Build and install
cargo install --path .
```
### From crates.io
```bash
cargo install dab
```
## License
MIT