Login
Remember
Register
Ask a Question
Which of the following is a valid Gradle task?
0
votes
asked
Mar 27, 2024
in
Gradle
by
rajeshsharma
Which of the following is a valid Gradle task?
a) run
b) compile
c) build
d) all of the above
valid
gradle
task
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 27, 2024
by
rajeshsharma
Answer: d) all of the above
Explanation: All of the listed tasks are valid Gradle tasks. The run task is used to run the application, the compile task is used to compile the source code, and the build task is used to build the project.
...