gradlew is not in your global path. To execute the 'clean' task (or any task for that matter) using the gradle wrapper (gradlew) in your project directory in your terminal, specify the current directory with the './':
./gradlew clean
Running mac, you also have to do "chmod 755 gradlew" on the file before to make it executable. – Simon Bengtsson Mar 31 '14 at 16:06
Going with @SimonBengtsson, if you are using linux you must do "sudo chmod +x gradlew" before you do the "./gradlew clean" to make sure it is executable. It did not work until I did this. – Richard Apr 2 '14 at 21:57
本文详细介绍了如何在项目目录中使用Gradle Wrapper(gradlew)执行‘clean’任务,并针对不同操作系统提供了必要的命令和注意事项。特别强调了在Mac系统下需要执行的`chmod 755 gradlew`命令来使文件可执行,以及在Linux系统下使用`sudo chmod +x gradlew`确保文件可执行。

4296

被折叠的 条评论
为什么被折叠?



