Android Emulator Skill
Build, test, and automate Android applications using accessibility-driven navigation and structured data instead of pixel coordinates.
Quick Start
# 1. Check environment
bash scripts/emu_health_check.sh
# 2. Launch app
python scripts/app_launcher.py --launch com.example.app
# 3. Map screen to see elements
python scripts/screen_mapper.py
# 4. Tap button
python scripts/navigator.py --find-text "Login" --tap
# 5. Enter text
python scripts/navigator.py --find-type EditText --enter-text "user@example.com"
All scripts support --help for detailed options and --json for machine-readable output.
Production Scripts
Build & Development
build_and_test.py - Build Android projects, run tests, parse results
- Wrapper around Gradle
- Support for assemble, install, and connectedCheck
- Parse build errors and test results
- Options:
--task, --clean, --json
log_monitor.py - Real-time log monitoring with intelligent filtering
- Wrapper around
adb logcat
- Filter by tag, priority, or PID
- Deduplicate repeated messages
- Options:
--package, --tag, --priority, --duration, --json
Navigation & Interaction
screen_mapper.py - Analyze current screen and list interactive elements
- Dump UI hierarchy using
uiautomator
- Parse XML to identify buttons, text fields, etc.
- Options:
--verbose, --json
navigator.py - Find and interact with elements semantically
- Find by text (fuzzy matching), resource-id, or class name
- Interactive tapping and text entry
- Options:
--find-text, --find-id, --tap, --enter-text, --json
gesture.py - Perform swipes, scrolls, and other gestures
- Swipe up/down/left/right
- Scroll lists
- Options:
--swipe, --scroll, --duration, --json
keyboard.py - Key events and hardware buttons
- Input key events (Home, Back, Enter, Tab)
- Type text via ADB
- Options:
--key, --text, --json
app_launcher.py - App lifecycle management
- Launch apps (
adb shell am start)
- Terminate apps (
adb shell am force-stop)
- Install/Uninstall APKs
- List installed packages
- Options:
--launch, --terminate, --install, --uninstall, --list, --json
Emulator Lifecycle Management
emulator_manage.py - Manage Android Virtual Devices (AVDs)
- List available AVDs
- Boot emulators
- Shutdown emulators
- Options:
--list, --boot, --shutdown, --json
emu_health_check.sh - Verify environment is properly configured
- Check ADB, Emulator, Java, Gradle, ANDROID_HOME
- List connected devices
Common Patterns
Auto-Device Detection: Scripts target the single connected device/emulator if only one is present, or require -s <serial> if multiple are connected.
Output Formats: Default is concise human-readable output. Use --json for machine-readable output.
Requirements
- Android SDK Platform-Tools (adb, fastboot)
- Android Emulator
- Java / OpenJDK
- Python 3
Key Design Principles
Semantic Navigation: Find elements by text, resource-id, or content-description.
Token Efficiency: Concise default output with optional verbose and JSON modes.
Zero Configuration: Works with standard Android SDK installation.
1---2name: android-emulator-skill3description: Android Emulator Skill4---5# Android Emulator Skill67Build, test, and automate Android applications using accessibility-driven navigation and structured data instead of pixel coordinates.89## Quick Start1011```bash12# 1. Check environment13bash scripts/emu_health_check.sh1415# 2. Launch app16python scripts/app_launcher.py --launch com.example.app1718# 3. Map screen to see elements19python scripts/screen_mapper.py2021# 4. Tap button22python scripts/navigator.py --find-text "Login" --tap2324# 5. Enter text25python scripts/navigator.py --find-type EditText --enter-text "user@example.com"26```2728All scripts support `--help` for detailed options and `--json` for machine-readable output.2930## Production Scripts3132### Build & Development33341. **build_and_test.py** - Build Android projects, run tests, parse results35 - Wrapper around Gradle36 - Support for assemble, install, and connectedCheck37 - Parse build errors and test results38 - Options: `--task`, `--clean`, `--json`39402. **log_monitor.py** - Real-time log monitoring with intelligent filtering41 - Wrapper around `adb logcat`42 - Filter by tag, priority, or PID43 - Deduplicate repeated messages44 - Options: `--package`, `--tag`, `--priority`, `--duration`, `--json`4546### Navigation & Interaction47483. **screen_mapper.py** - Analyze current screen and list interactive elements49 - Dump UI hierarchy using `uiautomator`50 - Parse XML to identify buttons, text fields, etc.51 - Options: `--verbose`, `--json`52534. **navigator.py** - Find and interact with elements semantically54 - Find by text (fuzzy matching), resource-id, or class name55 - Interactive tapping and text entry56 - Options: `--find-text`, `--find-id`, `--tap`, `--enter-text`, `--json`57585. **gesture.py** - Perform swipes, scrolls, and other gestures59 - Swipe up/down/left/right60 - Scroll lists61 - Options: `--swipe`, `--scroll`, `--duration`, `--json`62636. **keyboard.py** - Key events and hardware buttons64 - Input key events (Home, Back, Enter, Tab)65 - Type text via ADB66 - Options: `--key`, `--text`, `--json`67687. **app_launcher.py** - App lifecycle management69 - Launch apps (`adb shell am start`)70 - Terminate apps (`adb shell am force-stop`)71 - Install/Uninstall APKs72 - List installed packages73 - Options: `--launch`, `--terminate`, `--install`, `--uninstall`, `--list`, `--json`7475### Emulator Lifecycle Management76778. **emulator_manage.py** - Manage Android Virtual Devices (AVDs)78 - List available AVDs79 - Boot emulators80 - Shutdown emulators81 - Options: `--list`, `--boot`, `--shutdown`, `--json`82839. **emu_health_check.sh** - Verify environment is properly configured84 - Check ADB, Emulator, Java, Gradle, ANDROID_HOME85 - List connected devices8687## Common Patterns8889**Auto-Device Detection**: Scripts target the single connected device/emulator if only one is present, or require `-s <serial>` if multiple are connected.9091**Output Formats**: Default is concise human-readable output. Use `--json` for machine-readable output.9293## Requirements9495- Android SDK Platform-Tools (adb, fastboot)96- Android Emulator97- Java / OpenJDK98- Python 399100## Key Design Principles101102**Semantic Navigation**: Find elements by text, resource-id, or content-description.103104**Token Efficiency**: Concise default output with optional verbose and JSON modes.105106**Zero Configuration**: Works with standard Android SDK installation.