Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 865 Bytes

File metadata and controls

40 lines (25 loc) · 865 Bytes

droid

Android development CLI designed to complement Google's Android CLI — but this one is for humans, not machines.

Commands

droid run

Builds the debug APK, installs it on the connected device, and launches the app.

droid run

Requires adb on your PATH and a device connected (physical or emulator).

droid doctor

Checks your environment for required tools and SDKs. Currently checks for:

  • Java JDK
  • Android SDK
  • ADB
droid doctor

Installation

Build from source:

cargo build --release
cp target/release/droid /usr/local/bin/droid

Scaffolding

This CLI pairs beautifully with BrandNew, a project scaffolding tool that can be used to generate a new Android project without having to open Android Studio.