Reputation: 10959
I found no option for clean project in build in android studio
. what is reason for that? or is there different way to clean the project in android studio
Upvotes: 2
Views: 4865
Reputation: 306
Make sure you are looking a the correct directory. I also thought clean was missing when I looked under the root directory. Turns out it see example is located under the :app directory.
Open the Gradle side panel on the right. Select app->Tasks->build->clean
Upvotes: 3
Reputation: 653
This problem can occur when you import the root directory rather than the project file. If you imported the file, make sure you select the correct file:
Upvotes: 1