Build project without Android Studio

android, android-gradle-plugin, android-studio, gradle, gradlew

Solution

If the project was created with Android Studio, it should already have a `gradlew` script in the root directory, which you can use to execute Gradle from the command line (e.g. `gradlew build`).

Problem

How to build `Android Studio project` using `gradle` without installing `IDE`, if i never installed `gradle`, but i have `android sdk` and `jdk`?

Original source