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: Production-ready scripts for Android app testing, building, and automation. Provides semantic UI navigation, build automation, log monitoring, and emulator lifecycle management. Optimized for AI agents with minimal token output.4---56# Android Emulator Skill78Build, test, and automate Android applications using accessibility-driven navigation and structured data instead of pixel coordinates.910## Quick Start1112```bash13# 1. Check environment14bash scripts/emu_health_check.sh1516# 2. Launch app17python scripts/app_launcher.py --launch com.example.app1819# 3. Map screen to see elements20python scripts/screen_mapper.py2122# 4. Tap button23python scripts/navigator.py --find-text "Login" --tap2425# 5. Enter text26python scripts/navigator.py --find-type EditText --enter-text "user@example.com"27```2829All scripts support `--help` for detailed options and `--json` for machine-readable output.3031## Production Scripts3233### Build & Development34351. **build_and_test.py** - Build Android projects, run tests, parse results36 - Wrapper around Gradle37 - Support for assemble, install, and connectedCheck38 - Parse build errors and test results39 - Options: `--task`, `--clean`, `--json`40412. **log_monitor.py** - Real-time log monitoring with intelligent filtering42 - Wrapper around `adb logcat`43 - Filter by tag, priority, or PID44 - Deduplicate repeated messages45 - Options: `--package`, `--tag`, `--priority`, `--duration`, `--json`4647### Navigation & Interaction48493. **screen_mapper.py** - Analyze current screen and list interactive elements50 - Dump UI hierarchy using `uiautomator`51 - Parse XML to identify buttons, text fields, etc.52 - Options: `--verbose`, `--json`53544. **navigator.py** - Find and interact with elements semantically55 - Find by text (fuzzy matching), resource-id, or class name56 - Interactive tapping and text entry57 - Options: `--find-text`, `--find-id`, `--tap`, `--enter-text`, `--json`58595. **gesture.py** - Perform swipes, scrolls, and other gestures60 - Swipe up/down/left/right61 - Scroll lists62 - Options: `--swipe`, `--scroll`, `--duration`, `--json`63646. **keyboard.py** - Key events and hardware buttons65 - Input key events (Home, Back, Enter, Tab)66 - Type text via ADB67 - Options: `--key`, `--text`, `--json`68697. **app_launcher.py** - App lifecycle management70 - Launch apps (`adb shell am start`)71 - Terminate apps (`adb shell am force-stop`)72 - Install/Uninstall APKs73 - List installed packages74 - Options: `--launch`, `--terminate`, `--install`, `--uninstall`, `--list`, `--json`7576### Emulator Lifecycle Management77788. **emulator_manage.py** - Manage Android Virtual Devices (AVDs)79 - List available AVDs80 - Boot emulators81 - Shutdown emulators82 - Options: `--list`, `--boot`, `--shutdown`, `--json`83849. **emu_health_check.sh** - Verify environment is properly configured85 - Check ADB, Emulator, Java, Gradle, ANDROID_HOME86 - List connected devices8788## Common Patterns8990**Auto-Device Detection**: Scripts target the single connected device/emulator if only one is present, or require `-s <serial>` if multiple are connected.9192**Output Formats**: Default is concise human-readable output. Use `--json` for machine-readable output.9394## Requirements9596- Android SDK Platform-Tools (adb, fastboot)97- Android Emulator98- Java / OpenJDK99- Python 3100101## Key Design Principles102103**Semantic Navigation**: Find elements by text, resource-id, or content-description.104105**Token Efficiency**: Concise default output with optional verbose and JSON modes.106107**Zero Configuration**: Works with standard Android SDK installation.