.GRADLE File Extension
Gradle Script
Developer | N/A |
Popularity |
4.4 | 10 Votes |
What is a GRADLE file?
A GRADLE file is a script created by Gradle, which is a tool used to help teams build and deliver software. It contains a script, which includes a list of commands to be executed by Gradle. GRADLE files are typically used for storing build scripts in a domain-specific language based on Groovy.
More Information
The most common GRADLE file is the build.gradle file, which is used to define a project and its tasks. In Gradle, a build consists of one or more projects and each project consists of one or more tasks. Projects may represent various things depending on what you are using Gradle for, which includes deploying an application to a staging environment or building a web application. When you run a Gradle build with the gradle command, the build.gradle file in the current directory is called. You can find more information about build.gradle files at docs.gradle.org.
NOTE: Gradle is a build automation system that was designed for multi-project builds. It is predominantly used by Android Studio users to build their projects into .APK Android packages for distribution.
Common GRADLE Filenames
build.gradle - GRADLE build script used to define a project and its tasks in GRADLE.