Androider
Android development tools extension for Cursor/VSCode.
Features
- Build & Deploy: Build APK, install to device, and launch app in one click
- Logcat Viewer: Stream logcat output in integrated terminal
- Device Management: List connected devices, select target device
- Screenshot: Capture device screen and save to desktop
- Environment Setup: Auto-detect Java, Android SDK, and ADB
Commands
| Command |
Description |
Androider: Setup |
Configure Java, Android SDK, and ADB paths |
Androider: Dev |
Build + Install + Launch + Log (all-in-one) |
Androider: Build |
Build release APK |
Androider: Install |
Install APK to connected device |
Androider: Uninstall |
Uninstall app from device |
Androider: Log |
View live logcat |
Androider: Find |
List connected devices |
Androider: Info |
Show device and app info |
Androider: Shot |
Take screenshot |
Androider: JKS |
Generate JKS keystore |
Requirements
- Windows OS with PowerShell
- Android SDK with platform-tools
- Java Development Kit (JDK)
- ADB (Android Debug Bridge)
Installation
From VSIX
- Download the
.vsix file
- In Cursor/VSCode, go to Extensions view
- Click
... menu → Install from VSIX
- Select the downloaded file
From Source
npm install
npm run compile
Configuration
{
"androider.javaHome": "C:\\Program Files\\Java\\jdk-17",
"androider.androidSdk": "D:\\Android\\Sdk",
"androider.adbPath": "adb",
"androider.projectPath": "D:\\Projects\\MyAndroidApp"
}
Usage
Quick Start
- Press
Ctrl+Shift+P to open Command Palette
- Type
Androider: Setup and press Enter
- Configure your Java and Android SDK paths
- Open your Android project folder
- Run
Androider: Dev to build, install, and start logging
Dev Workflow
Androider: Dev → Build APK → Install to Device → Launch App → Start Logcat
License
MIT
| |