``bash
(
( ( )\ )
)( ( )\ (()/(
(()\ )\((_) ((_))
((_) ((_)(_) _| |
| '_|/ _ \| |/ _
|
|| _/||_,|
roid 0.1.1 Android Developer Toolkit
USAGE: roid [SUBCOMMAND]
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: build Build an Android project device Android device management help Prints this message or the help of the given subcommand(s) install Install an APK on a device or emulator new Create a new Android project ```
First set up a Roid.toml file @ ~/.config/Roid.toml
:
``` toml
templates = "https://github.com/cy6erlion/android-project-templates.git"
gradle = "/usr/bin/gradle"
emulator = "/home/{user}/Android/Sdk/emulator/emulator"
adb = "/usr/bin/adb" ```
bash
$ roid new --none MyProject
bash
$ roid build --debug
bash
$ roid device --list
bash
$ roid install --apk ./build/outputs/apk/debug/app-debug.apk
⧉