android-cli 0.2.0

Create, build, and release Android apps faster without Android Studio.
Documentation
# Install App

```ignore
USAGE:
    android install [OPTIONS]

OPTIONS:
    -h, --help       Print help information
    -r, --release    Should install release APK
```

## What it does

Executes `adb install` under the hood and simply returns the output.

## Examples

### Install in Debug mode

```sh
$ android install
```

### Install in Release mode

```sh
$ android install --release
```