Android Studio Build/Clean

2019-01-17 09:47发布

In an attempt to compile external jars, I have to use the terminal and do a clean. However, when I go into the root directory of my project and execute

gradlew clean

I get the following message:

-bash: gradlew: command not found

Here's a screenshot of my application folder's home directory.

Let me know if you need anything else, I'm not sure why this is happening.

2条回答
可以哭但决不认输i
2楼-- · 2019-01-17 10:37

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
查看更多
贪生不怕死
3楼-- · 2019-01-17 10:42

You need to give it the permission by running this one first:

chmod 777 gradlew
查看更多
登录 后发表回答