gradlew is a shell that uses gradle .
Under the hood, a Gradle Wrapper ( gradlew ) does three things:
- Parse the arguments passed to
gradlew - Install the correct version of
gradle - Call
gradle to run the specified tasks
Using Gradle Wrapper, you do not need to manage Gradle project distributions yourself. This means that every developer in your project uses the same version of Gradle and can run the Gradle build (even if Gradle has not been installed)
More here
yoAlex5 Mar 02 '18 at 20:24 2018-03-02 20:24
source share